isValueBlank property

bool get isValueBlank

is content considered as blank or not

Implementation

bool get isValueBlank => content == null ? true : emptyChecker(content!);