AudioPayload constructor

const AudioPayload({
  1. required String url,
  2. Duration? duration,
  3. String? filename,
  4. int? fileSizeBytes,
})

Implementation

const AudioPayload({
  required this.url,
  this.duration,
  this.filename,
  this.fileSizeBytes,
});