Player constructor

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

Implementation

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