isNullOrEmpty static method

bool isNullOrEmpty(
  1. String? s
)

Implementation

static bool isNullOrEmpty(String? s)
=> s == null || s.isEmpty;