Track constructor

Track({
  1. required String file,
  2. String? label,
  3. String? kind,
  4. bool? trackDefault,
})

Implementation

Track({
  required this.file,
  this.label,
  this.kind,
  this.trackDefault,
});