fromJson static method

Contents fromJson(
  1. String jsonString
)

Implementation

static Contents fromJson(String jsonString) {
  return serializers.deserializeWith(
      Contents.serializer, json.decode(jsonString))!;
}