isNullOrEmpty function

bool isNullOrEmpty(
  1. String? it
)

Implementation

bool isNullOrEmpty(final String? it) => it?.isEmpty ?? false;