Counter constructor

const Counter({
  1. Key? key,
  2. int count = 0,
  3. String? title,
  4. EdgeInsetsGeometry? padding,
})

Implementation

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