LaunchExternalLinkParamsAndroid constructor

const LaunchExternalLinkParamsAndroid({
  1. required BillingProgramAndroid billingProgram,
  2. required ExternalLinkLaunchModeAndroid launchMode,
  3. required ExternalLinkTypeAndroid linkType,
  4. required String linkUri,
})

Implementation

const LaunchExternalLinkParamsAndroid({
  /// The billing program (EXTERNAL_CONTENT_LINK or EXTERNAL_OFFER)
  required this.billingProgram,
  /// The external link launch mode
  required this.launchMode,
  /// The type of the external link
  required this.linkType,
  /// The URI where the content will be accessed from
  required this.linkUri,
});