RebuildCounter constructor

const RebuildCounter({
  1. Key? key,
  2. required RebuildTracker tracker,
  3. required Widget child,
  4. String? label,
})

Implementation

const RebuildCounter({
  super.key,
  required this.tracker,
  required this.child,
  this.label,
});