unfilled function

bool unfilled(
  1. String? string
)

unfilled() checks if the string is null or empty;

Implementation

bool unfilled(String? string) => string?.isEmpty ?? true;