GRpcErrorResponse.fromJson constructor

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

Implementation

factory GRpcErrorResponse.fromJson(Map<String, dynamic> json) {
  return GRpcErrorResponse(error: InternalGRpcError.fromJson(json['error']));
}