mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
7 lines
117 B
Dart
7 lines
117 B
Dart
|
/// To hold optional arguments that themselves could be null
|
||
|
class OrNull<T> {
|
||
|
OrNull(this.obj);
|
||
|
|
||
|
final T obj;
|
||
|
}
|