DeepLinkData constructor

const DeepLinkData({
  1. required String shortCode,
  2. String? iosURL,
  3. String? androidURL,
  4. String? webURL,
  5. UTMParameters? utmParameters,
  6. Map<String, String>? customParameters,
  7. String? deepLinkPath,
  8. String? appScheme,
  9. DateTime? clickedAt,
  10. String? linkId,
})

Creates deep link data

Implementation

const DeepLinkData({
  required this.shortCode,
  this.iosURL,
  this.androidURL,
  this.webURL,
  this.utmParameters,
  this.customParameters,
  this.deepLinkPath,
  this.appScheme,
  this.clickedAt,
  this.linkId,
});