fromJson static method

InitException? fromJson(
  1. dynamic jsonObject
)

Implementation

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

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

  return result;
}