PlayButton constructor
- {Key? key,
- required VoidCallback onPressed,
- String icon = "assets/FigmaDesign/Asset/SVG/Play.svg",
- double iconSize = 30,
- double leftOffset = 0}
Implementation
const PlayButton({
super.key,
required this.onPressed,
this.icon = "assets/FigmaDesign/Asset/SVG/Play.svg",
this.iconSize = 30,
this.leftOffset = 0,
});