RepositoryError.fromJson constructor

RepositoryError.fromJson(
  1. Map json_
)

Implementation

RepositoryError.fromJson(core.Map json_)
    : this(
        errorMessage: json_['errorMessage'] as core.String?,
        httpStatusCode: json_['httpStatusCode'] as core.int?,
        type: json_['type'] as core.String?,
      );