FKernalCounterBuilder constructor

const FKernalCounterBuilder({
  1. Key? key,
  2. required String slice,
  3. CounterSlice create()?,
  4. required Widget builder(
    1. BuildContext context,
    2. int value,
    3. CounterSlice counter
    ),
})

Implementation

const FKernalCounterBuilder({
  super.key,
  required this.slice,
  this.create,
  required this.builder,
});