PlayerController constructor

PlayerController({
  1. int? id,
  2. required PlayerMedia media,
  3. bool autoPlay = false,
  4. bool once = false,
  5. bool loop = false,
})

Implementation

PlayerController({
  int? id,
  required this.media,
  this.autoPlay = false,
  this.once = false,
  this.loop = false,
});