isEmpty static method

bool isEmpty(
  1. String? string
)

true if the string is null, or is a zero length String

Implementation

static bool isEmpty(String? string) => Empty.isEmpty(string);