Skip to main content

RaisedRoundedButton constructor

const RaisedRoundedButton({required Key key, required String buttonLabel, required Color backgroundColor, required Color textColor, required dynamic onTap(), double? height, double? width, bool showArrow = false})

Implementation

const RaisedRoundedButton({
required Key key,
required this.buttonLabel,
required this.backgroundColor,
required this.textColor,
required this.onTap,
this.height,
this.width,
this.showArrow = false,
}) : super(key: key);