PlatformConfig constructor

PlatformConfig({
  1. required ProjectType projectType,
  2. String? bundleIdentifier,
  3. String? packageName,
  4. List<String> urlSchemes = const [],
  5. List<String> iosUrlSchemes = const [],
  6. List<String> androidUrlSchemes = const [],
  7. List<String> associatedDomains = const [],
  8. List<String> appLinkHosts = const [],
  9. List<String> sha256Fingerprints = const [],
  10. String? teamId,
})

Implementation

PlatformConfig({
  required this.projectType,
  this.bundleIdentifier,
  this.packageName,
  this.urlSchemes = const [],
  this.iosUrlSchemes = const [],
  this.androidUrlSchemes = const [],
  this.associatedDomains = const [],
  this.appLinkHosts = const [],
  this.sha256Fingerprints = const [],
  this.teamId,
});