menu
fast_app_base package
documentation
common/common.dart
isEmpty function
isEmpty function
dark_mode
light_mode
isEmpty
function
bool
isEmpty
(
String
?
s
)
Returns
true
if
s
is either null or empty.
Implementation
bool isEmpty(String? s) => s == null || s.isEmpty;
fast_app_base package
documentation
common/common
isEmpty function
common library