JsonResponse.fromBytes constructor

JsonResponse.fromBytes({
  1. required Uint8List value,
})

Returns the new instance of JsonResponse from bytes.

Implementation

factory JsonResponse.fromBytes({
  required Uint8List value,
}) =>
    JsonResponseImpl.fromBytes(value: value);