isValid static method

bool isValid(
  1. String? str
)

Implementation

static bool isValid(String? str)
{
  return ! isEmpty( str ) ;
}