AppStoreModel constructor

AppStoreModel({
  1. bool enabled = false,
  2. String? apiKeyPath,
  3. String? apiIssuer,
  4. String? appId,
  5. String? bundleId,
})

Implementation

AppStoreModel({
  this.enabled = false,
  this.apiKeyPath,
  this.apiIssuer,
  this.appId,
  this.bundleId,
});