stadiumOutlinedButton method

Widget stadiumOutlinedButton(
  1. VoidCallback? onPressed, {
  2. Color? color,
})

Implementation

Widget stadiumOutlinedButton(VoidCallback? onPressed, {Color? color}) {
  return StadiumOutlinedButton(
    child: this.text(color: color),
    onPressed: onPressed,
  );
}