isEmpty function

bool isEmpty(
  1. String? string
)

Implementation

bool isEmpty(String? string) {
  return string?.isEmpty ?? true;
}