generateClientSecret static method
Implementation
static String generateClientSecret({
required String teamId,
required String clientId,
required String keyId,
required String privateKey,
}) {
final _ = [teamId, clientId, keyId, privateKey];
throw AuthException(
message:
'Apple client secret generation is not implemented. Provide a pre-generated secret from your Apple auth service.',
);
}