Files
moxxy/lib/service/not_specified.dart
2023-03-06 10:19:10 +05:30

7 lines
166 B
Dart

class _NotSpecifiedValue {
const _NotSpecifiedValue();
}
/// A value used for indicating that a value is not specified.
const notSpecified = _NotSpecifiedValue();