request method

  1. @override
Future request()
override

Perform the request using the APIProvider.

Returns a Future that completes with the response from the API.

Implementation

@override
Future request() {
  return APIProvider.instance.request(this);
}