DownloadButton.windows constructor

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

Constructs a DownloadButton for downloading the Windows application.

Implementation

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