InheritedCounter constructor

const InheritedCounter({
  1. Key? key,
  2. Color? color,
  3. int? counter,
  4. required Widget child,
})

Implementation

const InheritedCounter({
  super.key,
  this.color,
  this.counter,
  required super.child,
});