SmartLinkDownloadButton constructor

const SmartLinkDownloadButton({
  1. Key? key,
  2. required String smartLinkUrl,
  3. required String downloadUrl,
})

Implementation

const SmartLinkDownloadButton({
  super.key,
  required this.smartLinkUrl,
  required this.downloadUrl,
});