isNotNullOrEmpty function

bool isNotNullOrEmpty(
  1. String? text
)

Implementation

bool isNotNullOrEmpty(String? text) => text.isNotNullOrEmpty;