hasSeparator property

bool get hasSeparator

True when this component explicitly specifies a separator.

Implementation

bool get hasSeparator => _hasSeparator.value ?? false;
set hasSeparator (bool? value)

Implementation

set hasSeparator(bool? value) {
  _hasSeparator.value = value ?? false;
}