Checks if a string is blank (empty or only whitespace).
Example:
Helpers.isBlank(' '); // true
static bool isBlank(String? value) => value == null || value.trim().isEmpty;