alsoAsync method

Future<T> alsoAsync(
  1. FutureOr<void> block(
    1. T it
    )
)

Implementation

Future<T> alsoAsync(final FutureOr<void> Function(T it) block) async {
  await block(this);

  return this;
}