fromJsonChecked static method
Implementation
static UpdateType? fromJsonChecked(String json) {
var v = fromJson(json);
assert(v != null, "Unexpected updateType: $json");
return v;
}
static UpdateType? fromJsonChecked(String json) {
var v = fromJson(json);
assert(v != null, "Unexpected updateType: $json");
return v;
}