GenerateLinkParams constructor

GenerateLinkParams({
  1. required String title,
  2. String? subtitle,
  3. String? imageURL,
  4. Map<String, dynamic>? data,
  5. List<String>? tags,
  6. CustomRedirects? customRedirects,
  7. bool? showPreviewIos,
  8. bool? showPreviewAndroid,
  9. TrackingParams? tracking,
})

Implementation

GenerateLinkParams({
  required this.title,
  this.subtitle,
  this.imageURL,
  this.data,
  this.tags,
  this.customRedirects,
  this.showPreviewIos,
  this.showPreviewAndroid,
  this.tracking,
});