execute method

Future<T?> execute()

Implementation

Future<T?> execute() async {
  return await _execute().catchError((error) {
    this._streamError(ApiRequestError(error));
  });
}