lookup method Null safety
- Object? value
inherited
Lookup from the Set interface. Not interesting for a String set.
Implementation
String? lookup(Object? value) => contains(value) ? value as String : null;
Lookup from the Set interface. Not interesting for a String set.
String? lookup(Object? value) => contains(value) ? value as String : null;