emptyOrNullString function

bool emptyOrNullString(
  1. String? value
)

check string is empty

Implementation

bool emptyOrNullString(String? value) {
  return value == null || value == '';
}