Player constructor

Player({
  1. String? url,
  2. int? width,
  3. int? height,
  4. String? value,
})

Implementation

Player({
  this.url,
  this.width,
  this.height,
  this.value,
});