QYPlayerResolution constructor

const QYPlayerResolution({
  1. required String url,
  2. required String label,
  3. required String sublabel,
  4. double? width = 0.0,
  5. double? height = 0.0,
})

分辨率对象

Implementation

const QYPlayerResolution({
  required this.url,
  required this.label,
  required this.sublabel,
  this.width = 0.0,
  this.height = 0.0,
});