CupertinoControls constructor

const CupertinoControls({
  1. required Color backgroundColor,
  2. required Color iconColor,
  3. bool showPlayButton = true,
  4. Key? key,
})

Implementation

const CupertinoControls({
  required this.backgroundColor,
  required this.iconColor,
  this.showPlayButton = true,
  super.key,
});