AuthCloudApiError.fromJson constructor Null safety

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

Alternate constructor to create an AuthCloudApiError from json.

Params:

  • json: contains the source for instance creation.

Implementation

factory AuthCloudApiError.fromJson(Map<String, dynamic> json) {
  return const AuthCloudApiErrorConverter().fromJson(json);
}