1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 01:38:52 +01:00
nc-photos/lib/or_null.dart

7 lines
117 B
Dart
Raw Normal View History

2021-04-28 21:22:33 +02:00
/// To hold optional arguments that themselves could be null
class OrNull<T> {
OrNull(this.obj);
final T obj;
}