also<R> method
Implementation
Future<T?> also<R>(R block(T self)) async {
if (this == null) {
return Future.value(null);
} else {
block(await this!);
return this;
}
}
Future<T?> also<R>(R block(T self)) async {
if (this == null) {
return Future.value(null);
} else {
block(await this!);
return this;
}
}