notEmptyString static method

bool notEmptyString(
  1. dynamic value
)

Implementation

static bool notEmptyString(dynamic value) {
  if (value is! String) return true;
  return (value).isNotEmpty;
}