AppleConfig constructor

AppleConfig({
  1. required String bundleId,
  2. required String issuerId,
  3. required String keyId,
  4. required String privateKey,
  5. bool useSandbox = false,
})

Implementation

AppleConfig({
  required this.bundleId,
  required this.issuerId,
  required this.keyId,
  required this.privateKey,
  this.useSandbox = false,
});