fromJson static method
Implementation
@visibleForTesting
static LicenseException? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = LicenseException._privateConstructor();
result._code = LicensingResultCode.getByValue(jsonObject["code"])!;
result._message = jsonObject["message"] ?? "";
return result;
}