AnimatedPlayPause constructor

const AnimatedPlayPause({
  1. Key? key,
  2. required bool playing,
  3. double? size,
  4. Color? color,
})

Implementation

const AnimatedPlayPause({
  Key? key,
  required this.playing,
  this.size,
  this.color,
}) : super(key: key);