VoiceNote constructor

VoiceNote({
  1. String? extra,
  2. int? client_id,
  3. int32? duration,
  4. bytes? waveform,
  5. string? mime_type,
  6. SpeechRecognitionResult? speech_recognition_result,
  7. File? voice,
})

Implementation

VoiceNote({
  super.extra,
  super.client_id,
  this.duration,
  this.waveform,
  this.mime_type,
  this.speech_recognition_result,
  this.voice,
});