filled function

bool filled(
  1. String? string
)

filled() checks if the string contains data;

Implementation

bool filled(String? string) => !unfilled(string);