value property
Object?
get
value
Implementation
Object? get value {
switch (_type) {
case _ValueOrMatcherType.matcher:
return _matcher;
case _ValueOrMatcherType.value:
return _value;
}
}