fileTypeVoiceNote property

FileTypeVoiceNote? fileTypeVoiceNote

The file is a voice note

Implementation

FileTypeVoiceNote? get fileTypeVoiceNote {
  if (this is FileTypeVoiceNote) {
    return this as FileTypeVoiceNote;
  }
  return null;
}