CastDeviceDialog constructor

const CastDeviceDialog({
  1. Key? key,
  2. required String playUrl,
  3. Duration? tipTime,
  4. Widget? castWidget,
  5. required DevicesType devicesType,
  6. required VoidCallback onClose,
})

Implementation

const CastDeviceDialog({
  super.key,
  required this.playUrl,
  this.tipTime,
  this.castWidget,
  required this.devicesType,
  required this.onClose,
});