MojoTextButton constructor

MojoTextButton({
  1. required String text,
  2. required Function onPressed,
  3. Color textColor = Colors.white,
  4. EdgeInsets? padding,
})

Implementation

MojoTextButton(
    {required this.text,
    required this.onPressed,
    this.textColor = Colors.white,
    this.padding});