IosParameters constructor

IosParameters({
  1. String appStoreId,
  2. @required String bundleId,
  3. String customScheme,
  4. Uri fallbackUrl,
  5. String ipadBundleId,
  6. Uri ipadFallbackUrl,
  7. String minimumVersion,
})

Implementation

IosParameters({
  this.appStoreId,
  @required this.bundleId,
  this.customScheme,
  this.fallbackUrl,
  this.ipadBundleId,
  this.ipadFallbackUrl,
  this.minimumVersion,
}) : assert(bundleId != null);