fromJson<T extends Json> static method

T fromJson<T extends Json>(
  1. String json
)

Implementation

static T fromJson<T extends Json>(String json) {
  return OtterInternal.decode(jsonDecode(json))!;
}