TutorialItems constructor

TutorialItems({
  1. double? top,
  2. double? bottom,
  3. double? left,
  4. double? right,
  5. GlobalKey<State<StatefulWidget>>? globalKey,
  6. List<Widget>? children,
  7. ShapeFocus? shapeFocus,
  8. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  9. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  10. Widget? widgetNext,
  11. Color? color,
  12. Radius? borderRadius,
  13. bool touchScreen = false,
})

This is the constructor of the class

Implementation

TutorialItems({
  this.top,
  this.bottom,
  this.left,
  this.right,
  this.globalKey,
  this.children,
  this.shapeFocus,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.widgetNext,
  this.color,
  this.borderRadius,
  this.touchScreen = false,
});