fromJson static method

IntentState fromJson(
  1. String json
)

Implementation

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