LivenessProcesss constructor

const LivenessProcesss({
  1. Key? key,
  2. required double sizeHeight,
  3. required double sizeWidth,
  4. required ValueNotifier<int> currentStep,
  5. required int doingStep,
})

Implementation

const LivenessProcesss({
  Key? key,
  required this.sizeHeight,
  required this.sizeWidth,
  required this.currentStep,
  required this.doingStep,
}) : super(key: key);