JsonResponse.fromString constructor

JsonResponse.fromString({
  1. required String value,
})

Returns the new instance of JsonResponse from json string.

Implementation

factory JsonResponse.fromString({
  required String value,
}) =>
    JsonResponseImpl.fromString(value: value);