increment method

int increment()

Implementation

int increment() {
  if (kDebugMode) print('increment $_count');
  _count++;
  return _count;
}