fromJson static method

ErrorState? fromJson(
  1. dynamic jsonString
)

Implementation

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