RoundedButton constructor
- {Key key,
- double radius,
- Color splashColor,
- Color textColor,
- Color buttonColor,
- @required String title,
- @required Function onPressed}
Implementation
const RoundedButton(
{Key key,
this.radius,
this.splashColor,
this.textColor,
this.buttonColor,
@required this.title,
@required this.onPressed})
: super(key: key);