exists static method

bool exists(
  1. String? value
)

Implementation

static bool exists(String? value) => value != null && value.length > 0;