JsonArray.from constructor

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

Returns the new instance of JsonArray based on response.

Implementation

factory JsonArray.from({
  required Response response,
}) =>
    JsonArrayImpl.from(response: response);