FlutterStoreListing.customize constructor

FlutterStoreListing.customize({
  1. String? forceIosAppId,
  2. String? forceAndroidPackageName,
  3. Future<bool> urlCanLaunch(
    1. String url
    ) = defaultUrlCanLaunch,
  4. Future<bool> urlLaunch(
    1. String url
    ) = defaultUrlLaunch,
})

Implementation

FlutterStoreListing.customize({
  this.forceIosAppId,
  this.forceAndroidPackageName,
  this.urlCanLaunch = defaultUrlCanLaunch,
  this.urlLaunch = defaultUrlLaunch,
});