TutButton constructor

TutButton({
  1. required String buttonText,
  2. required Color buttonColor,
  3. required Function onPressed,
})

Implementation

TutButton({
  required this.buttonText,
  required this.buttonColor,
  // required this.buttonWidth,
  required this.onPressed,
});