InternalErrorDetails.fromJson constructor

InternalErrorDetails.fromJson(
  1. Map json_
)

Implementation

InternalErrorDetails.fromJson(core.Map json_)
  : this(
      errorCode: json_['errorCode'] as core.String?,
      errorCodeDetail: json_['errorCodeDetail'] as core.String?,
      operationCode: json_['operationCode'] as core.String?,
      operationCodeDetail: json_['operationCodeDetail'] as core.String?,
    );