Counter constructor
const
Counter({
- Key? key,
- int count = 0,
- String? title,
- EdgeInsetsGeometry? padding,
Implementation
const Counter({Key? key, this.count = 0, this.title, this.padding})
: super(key: key);