disabled property

bool disabled

Implementation

bool get disabled => _disabled;
void disabled=(bool newVal)

Implementation

set disabled(bool newVal) {
  _disabled = newVal;
  for (final row in valueListPanel.children) {
    if (row is ListFieldRow) {
      row.removeButton.visible = !newVal;
    }
  }
  addPanel.visible = !newVal;
}