label property

String? label

Implementation

String? get label => _label;
void label=(String? newValue)

Implementation

set label(String? newValue) {
  this.updateProperty('label', newValue: newValue);
  this._label = newValue;
}