IsNullOrEmpty static method

bool IsNullOrEmpty(
  1. String? value
)

Implementation

static bool IsNullOrEmpty(String? value) {
  return value == null || value.isEmpty;
}