counter property

dynamic counter

Implementation

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

Implementation

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