fromJson static method
Implementation
static IntentState fromJson(String json) {
final state = _jsonMap[json];
if (state != null) {
return state;
}
throw Exception("Unsupported State JSON value: $json");
}
static IntentState fromJson(String json) {
final state = _jsonMap[json];
if (state != null) {
return state;
}
throw Exception("Unsupported State JSON value: $json");
}