AuthCloudApiDecryptionError.fromJson constructor Null safety

AuthCloudApiDecryptionError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates an AuthCloudApiDecryptionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory AuthCloudApiDecryptionError.fromJson(Map<String, dynamic> json) {
  return AuthCloudApiDecryptionErrorImpl.fromJson(json);
}