value property

dynamic value

Returns the mutable contents of this MutableData as native types.

Implementation

dynamic get value => _data['value'];
void value=(dynamic newValue)

Implementation

set value(dynamic newValue) => _data['value'] = newValue;