isBlank static method

bool isBlank(
  1. String? string
)

Returns true if the string is null or Blank.

A string that only contains whitespace is considered blank. See: Empty.isEmpty to check for a zero length string.

Implementation

static bool isBlank(String? string) => Blank.isBlank(string);