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