AuthCloudApiError.malformedPayload constructor Null safety

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

A problem with the provided Auth Cloud API response occurred.

Params:

  • json: contains the source for instance creation.

Implementation

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