map<R> method

Future<R> map<R>(
  1. R f(
    1. T
    )
)

Implementation

Future<R> map<R>(R Function(T) f) async {
  return f(await this);
}