appTextButton constructor

appTextButton({
  1. required Function? onPressed,
  2. String? buttonText,
  3. Widget? child,
  4. Color? color,
  5. OutlinedBorder? shape,
  6. EdgeInsets? padding,
  7. double? elevation,
  8. Color? boarderColor,
})

Implementation

appTextButton(
    {required this.onPressed,
    this.buttonText,
    this.child,
    this.color,
    this.shape,
    this.padding,
    this.elevation,
    this.boarderColor});