CardBarButton constructor
const
CardBarButton(- {Key key,
- Color color = Colors.white,
- double eleavation = 12,
- double height = 80,
- double width = 80,
- Color shadowColor = Colors.grey,
- Function onTap,
- double roundedCorner = 5,
- double middleSpace = 8,
- @required Widget title,
- @required Widget subtitle}
)
Implementation
const CardBarButton(
{Key key,
this.color = Colors.white,
this.eleavation = 12,
this.height = 80,
this.width = 80,
this.shadowColor = Colors.grey,
this.onTap,
this.roundedCorner = 5,
this.middleSpace = 8,
@required this.title,
@required this.subtitle})
: super(key: key);