value property

String get value

Implementation

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

pass null to remove key from attributes

Implementation

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