1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-10 17:28:56 +01:00
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)!;
}