nc-photos/app/lib/future_extension.dart
2022-06-08 02:54:11 +08:00

3 lines
100 B
Dart

extension FutureNotNullExtension<T> on Future<T?> {
Future<T> notNull() async => (await this)!;
}