NiceApprovalWorkflow constructor

const NiceApprovalWorkflow({
  1. Key? key,
  2. required List<NiceApprovalStep> steps,
  3. required int currentStep,
  4. NiceApprovalOrientation orientation = NiceApprovalOrientation.horizontal,
})

Implementation

const NiceApprovalWorkflow({
  super.key,
  required this.steps,
  required this.currentStep,
  this.orientation = NiceApprovalOrientation.horizontal,
});