forked from lxm_tools/flutter-picgo
3 lines
173 B
Dart
3 lines
173 B
Dart
/// Returns true if s is either null, empty or is solely made of whitespace characters (as defined by String.trim).
|
|
|
|
bool isBlank(String s) => s == null || s.trim().isEmpty; |