request method

Future<T> request()

Request without values Specified, therefore the whole response is returned in parsed form.

Implementation

Future<T> request() async {
  String response = await formRequest();
  dynamic json = jsonDecode(response);
  return parseResponse(json);
}