ShareParams constructor

ShareParams({
  1. String? text,
  2. String? subject,
  3. String? title,
  4. XFile? previewThumbnail,
  5. Rect? sharePositionOrigin,
  6. Uri? uri,
  7. List<XFile>? files,
  8. List<String>? fileNameOverrides,
  9. bool downloadFallbackEnabled = true,
  10. bool mailToFallbackEnabled = true,
  11. List<CupertinoActivityType>? excludedCupertinoActivities,
})

Implementation

ShareParams({
  this.text,
  this.subject,
  this.title,
  this.previewThumbnail,
  this.sharePositionOrigin,
  this.uri,
  this.files,
  this.fileNameOverrides,
  this.downloadFallbackEnabled = true,
  this.mailToFallbackEnabled = true,
  this.excludedCupertinoActivities,
});