isBlank method

bool isBlank(
  1. String? string
)

Implementation

bool isBlank(final String? string) => string == null || string.trim().isEmpty;