Json.from constructor

Json.from({
  1. required Response response,
})

Returns the new instance of Json based on response.

Implementation

factory Json.from({
  required Response response,
}) =>
    JsonImpl.from(response: response);