fromJson static method

UserGroup? fromJson(
  1. String jsonString
)

Implementation

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