AuthCloudApiError.decryptionError constructor
- Map<
String, dynamic> json
The encrypted contents of the Auth Cloud API response could not be decrypted.
Params:
- json: contains the source for instance creation.
Implementation
factory AuthCloudApiError.decryptionError(Map<String, dynamic> json) {
return AuthCloudApiDecryptionError.fromJson(json);
}