call<T> abstract method

Future<GQLResult<T>> call<T>(
  1. Future<T> func()
)

Main wrapper method that all implementations must provide

Implementation

Future<GQLResult<T>> call<T>(Future<T> Function() func);