nc-photos/lib/or_null.dart
2021-04-29 03:31:54 +08:00

6 lines
117 B
Dart

/// To hold optional arguments that themselves could be null
class OrNull<T> {
OrNull(this.obj);
final T obj;
}