isNullOrBlank property

bool get isNullOrBlank

Implementation

bool get isNullOrBlank =>
    this == null || this == 'null' || this!.trim().isEmpty;