menu
ews package
documentation
ComplexProperties/StringList.dart
StringList
Contains method
Contains method
dark_mode
light_mode
Contains
method
bool
Contains
(
String
s
)
Determines whether the list contains a specific string.
The String to check the presence of.
Implementation
bool Contains(String s) { return this._items.contains(s); }
ews package
documentation
ComplexProperties/StringList
StringList
Contains method
StringList class