goAndGet method

Future<T> goAndGet()

Executes this request and returns the response's data, in one call.

See: Request.go, Response.get

Implementation

Future<T> goAndGet() async {
  return (await go()).get();
}