menu
flutter_text_utils package
documentation
string_extensions.dart
FlutterTextUtils
charCount method
charCount method
dark_mode
light_mode
charCount
method
int
charCount
(
{
bool
excludeSpaces
=
false
,
})
Implementation
int charCount({bool excludeSpaces = false}) => excludeSpaces ? replaceAll(' ', '').length : length;
flutter_text_utils package
documentation
string_extensions
FlutterTextUtils
charCount method
FlutterTextUtils extension on
String