isNotEmpty function

bool isNotEmpty(
  1. String? value
)

Implementation

bool isNotEmpty(String? value) => value != null && value.isNotEmpty;