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

4 lines
100 B
Dart
Raw Normal View History

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