MediaUrl constructor

const MediaUrl({
  1. required String url,
  2. String? title,
  3. bool play = false,
  4. Duration? tipTime,
  5. Widget? tipWidget,
  6. Widget? castWidget,
  7. DevicesType castDevicesType = DevicesType.all,
})

Implementation

const MediaUrl({
  required this.url,
  this.title,
  this.play = false,
  this.tipTime,
  this.tipWidget,
  this.castWidget,
  this.castDevicesType = DevicesType.all,
});