label property

String label

Implementation

String get label => _getAttribute<String>(kLabel, '');
void label=(String? x)

pass null to remove key from attributes

Implementation

set label(String? x) =>
    (x == null) ? _attributes.remove(kLabel) : _attributes[kLabel] = x;