menu
bloc_structure package
documentation
app_utils/common_util_methods.dart
CommonUtilMethods
isNameValid static method
isNameValid static method
dark_mode
light_mode
isNameValid
static method
bool
isNameValid
(
String
name
)
Implementation
static bool isNameValid(String name) { if (name.length < 3) { return false; } return true; }
bloc_structure package
documentation
app_utils/common_util_methods
CommonUtilMethods
isNameValid static method
CommonUtilMethods class