fromJson static method

MatchFacesException? fromJson(
  1. dynamic jsonObject
)

Implementation

static MatchFacesException? fromJson(jsonObject) {
  if (jsonObject == null) return null;
  var result = new MatchFacesException();

  result.errorCode = jsonObject["errorCode"];
  result.message = jsonObject["message"];
  result.underlyingException =
      UnderlyingException.fromJson(jsonObject["underlyingException"]);

  return result;
}