isNullOrEmpty function

bool isNullOrEmpty(
  1. String? text
)

Implementation

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