value property

String value

Implementation

String get value => _getAttribute<String>(kValue, '');
void value=(String? x)

pass null to remove key from attributes

Implementation

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