fromJson static method

Country? fromJson(
  1. String jsonString
)

Implementation

static Country? fromJson(String jsonString) => serializers.deserializeWith(
      Country.serializer, json.decode(jsonString));