OnboardStep constructor

const OnboardStep(
  1. List<Widget> children,
  2. {Key? key,
  3. Widget? image,
  4. Color? color = Colors.white}
)

Implementation

const OnboardStep(
  this.children, {
  super.key,
  this.image,
  this.color = Colors.white,
});