isTextNotEmpty static method

bool isTextNotEmpty(
  1. String? text
)

Implementation

static bool isTextNotEmpty(String? text){
  return text != null && text.isNotEmpty;
}