strNotEmpty static method

bool strNotEmpty(
  1. String? str
)

Implementation

static bool strNotEmpty(String? str){
  return str !=null && str.length > 0;
}