7 lines
166 B
Dart
7 lines
166 B
Dart
class _NotSpecifiedValue {
|
|
const _NotSpecifiedValue();
|
|
}
|
|
|
|
/// A value used for indicating that a value is not specified.
|
|
const notSpecified = _NotSpecifiedValue();
|