AppLinkParams constructor

AppLinkParams({
  1. required String url,
  2. required String name,
  3. required String urlPrefix,
  4. String? shortId,
  5. SocialMeta? socialMeta,
  6. String? androidFallbackUrl,
  7. String? iosFallbackUrl,
  8. bool? isOpenInBrowserAndroid,
  9. bool? isOpenInAndroidApp,
  10. bool? isOpenInBrowserApple,
  11. bool? isOpenInIosApp,
})

Creates an AppLinkParams instance with the required and optional fields.

Implementation

AppLinkParams({
  required this.url,
  required this.name,
  required this.urlPrefix,
  this.shortId,
  this.socialMeta,
  this.androidFallbackUrl,
  this.iosFallbackUrl,
  this.isOpenInBrowserAndroid,
  this.isOpenInAndroidApp,
  this.isOpenInBrowserApple,
  this.isOpenInIosApp,
});