RPUITask constructor

const RPUITask({
  1. Key? key,
  2. required RPOrderedTask task,
  3. Image? carouselBarImage,
  4. Color? carouselBarBackgroundColor,
  5. void onSubmit(
    1. RPTaskResult
    )?,
  6. void onCancel(
    1. RPTaskResult? result
    )?,
})

Implementation

const RPUITask({
  super.key,
  required this.task,
  this.carouselBarImage,
  this.carouselBarBackgroundColor,
  this.onSubmit,
  this.onCancel,
});