FlickPlayToggle constructor

const FlickPlayToggle({
  1. Key? key,
  2. Widget? playChild,
  3. Widget? pauseChild,
  4. Widget? replayChild,
  5. Function? togglePlay,
  6. Color? color,
  7. double? size,
  8. EdgeInsetsGeometry? padding,
  9. Decoration? decoration,
})

Implementation

const FlickPlayToggle({
  Key? key,
  this.playChild,
  this.pauseChild,
  this.replayChild,
  this.togglePlay,
  this.color,
  this.size,
  this.padding,
  this.decoration,
}) : super(key: key);