isNullOrBlank property

bool get isNullOrBlank

Retorna true caso a string seja nula ou vazia

Implementation

bool get isNullOrBlank {
  return this == null || this!.trim().isEmpty;
}