AppStoreConnect constructor

AppStoreConnect(
  1. String _issuer,
  2. String _keyId,
  3. String _keyFilePath
)

_issuer Your issuer ID from the API keys page in App Store Connect

_keyId Your private key ID from App Store Connect

_keyFilePath Path to the private key file from App Store Connect

Implementation

AppStoreConnect(this._issuer, this._keyId, this._keyFilePath) {
  loadKeyFileContent();
  _provisioning = Provisioning(_issuer, _keyId, _keyFileContent);
  _builds = Builds(_issuer, _keyId, _keyFileContent);
}