MaterialControls constructor

const MaterialControls({
  1. bool showPlayButton = true,
  2. Widget? cancelWidget,
  3. dynamic onTap()?,
  4. Key? key,
})

Implementation

const MaterialControls({
  this.showPlayButton = true,
  this.cancelWidget,
  this.onTap,
  Key? key,
}) : super(key: key);