AudioEffects constructor

const AudioEffects({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? color,
  5. EdgeInsetsGeometry? padding,
  6. double? artworkWidth,
  7. double? artworkHeight,
  8. BorderRadius? artworkBorder,
  9. bool? isLocal,
  10. required bool? isPlaying,
  11. required String? url,
  12. required int id,
  13. required ArtworkType type,
})

Implementation

const AudioEffects({
  Key? key,
  this.width,
  this.height,
  this.color,
  this.padding,
  this.artworkWidth,
  this.artworkHeight,
  this.artworkBorder,
  this.isLocal,
  required this.isPlaying,
  required this.url,
  required this.id,
  required this.type,
}) : super(key: key);