JsonResponse.fromString constructor
JsonResponse.fromString({
- required String value,
Returns the new instance of JsonResponse from json string.
Implementation
factory JsonResponse.fromString({
required String value,
}) =>
JsonResponseImpl.fromString(value: value);