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