state property

dynamic state

Implementation

dynamic get state => js_util.getProperty(this, 'state');
void state=(dynamic newValue)

Implementation

set state(dynamic newValue) {
  js_util.setProperty(this, 'state', newValue);
}