hasValue property

bool get hasValue

Returns true if has value.

Implementation

bool get hasValue {
  final value = this.value;
  return value != null && value.isNotEmpty;
}