GuideStep constructor

GuideStep({
  1. dynamic identify,
  2. required List<FocusTarget> targets,
  3. MultiDescContentBuilder? descBuilder,
  4. Color? maskColor,
  5. Widget? skip,
  6. AlignmentGeometry? skipAlign,
  7. bool skipEnable = true,
  8. EdgeInsetsGeometry? skipMargin,
  9. void onTapSpace(
    1. NoviceGuideController controller
    )?,
})

Implementation

GuideStep({
  this.identify,
  required this.targets,
  this.descBuilder,
  this.maskColor,
  this.skip,
  this.skipAlign,
  this.skipEnable = true,
  this.skipMargin,
  this.onTapSpace,
});