isBlank function

bool isBlank(
  1. String? it
)

Implementation

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