counter property

dynamic get counter

Implementation

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

Implementation

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