NiceDocumentApprovalFlow constructor

const NiceDocumentApprovalFlow({
  1. Key? key,
  2. required List<NiceApprovalStep> steps,
  3. String title = 'Approval Flow',
  4. void onStepTap(
    1. int index
    )?,
})

Implementation

const NiceDocumentApprovalFlow({
  super.key,
  required this.steps,
  this.title = 'Approval Flow',
  this.onStepTap,
});