alsoAsync method

Future<T> alsoAsync(
  1. FutureOr<void> f(
    1. T v
    )
)

Implementation

Future<T> alsoAsync(FutureOr<void> Function(T v) f) async {
  await f(this);
  return this;
}