isNullOrBlank function

bool isNullOrBlank(
  1. String? it
)

Implementation

bool isNullOrBlank(final String? it) => it?.trim().isEmpty ?? true;