inlineQueryResultVoiceNote property

InlineQueryResultVoiceNote? inlineQueryResultVoiceNote

Represents a voice note

Implementation

InlineQueryResultVoiceNote? get inlineQueryResultVoiceNote {
  if (this is InlineQueryResultVoiceNote) {
    return this as InlineQueryResultVoiceNote;
  }
  return null;
}