menu
scaffold_core package
documentation
core_extensions/string_extension.dart
StringRegexExtension
matches method
matches method
dark_mode
light_mode
matches
method
bool
matches
(
String
regex
)
Implementation
bool matches(String regex) { if (isEmpty) return false; return RegExp(regex).hasMatch(this); }
scaffold_core package
documentation
core_extensions/string_extension
StringRegexExtension
matches method
StringRegexExtension extension on
String