isNullOrEmpty function

bool isNullOrEmpty(
  1. String? it
)

Implementation

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