Counter constructor

const Counter({
  1. Key? key,
  2. int? count,
})

Implementation

const Counter({
  Key? key,
  this.count,
}) : super(key: key);