ButtonStep constructor

const ButtonStep({
  1. required Color colors,
  2. Color? textColors,
  3. Color? iconColors,
  4. required String text,
  5. double? fontSize = 12,
  6. dynamic onPressed()?,
  7. bool? isNext = false,
  8. Key? key,
})

Implementation

const ButtonStep({
  required this.colors,
  this.textColors,
  this.iconColors,
  required this.text,
  this.fontSize = 12,
  this.onPressed,
  this.isNext = false,
  Key? key,
}) : super(key: key);