static String? isValueEmpty(String value,{String? message}) { if (value.isEmpty) { return message??"Please enter value"; } return null; }