counter property

int get counter

Implementation

int get counter => _counter;
set counter (int index)

Implementation

set counter(int index) {
  _counter = index;
  update();
}