FileInfo constructor

const FileInfo({
  1. String? id,
  2. String? filename,
  3. String? source,
  4. double? audioDuration,
  5. int? numberOfChannels,
})

Creates a new instance of FileInfo

Implementation

const FileInfo({
  this.id,
  this.filename,
  this.source,
  this.audioDuration,
  this.numberOfChannels,
});