DownloadButton.linux constructor

const DownloadButton.linux({
  1. Key? key,
  2. String? link = 'messenger-linux.zip',
  3. void onPressed()?,
})

Constructs a DownloadButton for downloading the Linux application.

Implementation

const DownloadButton.linux({
  super.key,
  this.link = 'messenger-linux.zip',
  this.onPressed,
}) : asset = SvgIcons.linux,
     title = 'Linux',
     download = true;