notBlankOrNull property

String? get notBlankOrNull

Implementation

String? get notBlankOrNull {
  return this != null && this?.trim().isNotEmpty == true ? this : null;
}