gets<R> abstract method

Future<Response<T>> gets<R>({
  1. bool fromCache = false,
  2. R? source(
    1. R parent
    )?,
})

Implementation

Future<Response<T>> gets<R>({
  bool fromCache = false,
  R? Function(R parent)? source,
});