AppStoreCredentials constructor Null safety
Create a JWT token with the given payload and algorithm
Implementation
AppStoreCredentials({
required this.issuerId,
required this.keyId,
required String privateKey,
this.audience = 'appstoreconnect-v1',
}) : privateKey = privateKey.replaceAll(r'\n', '\n') {
sign();
}