fromJson static method
Inherited by: InputInlineQueryResultAnimation InputInlineQueryResultArticle InputInlineQueryResultAudio InputInlineQueryResultContact InputInlineQueryResultDocument InputInlineQueryResultGame InputInlineQueryResultLocation InputInlineQueryResultPhoto InputInlineQueryResultSticker InputInlineQueryResultVenue InputInlineQueryResultVideo InputInlineQueryResultVoiceNote
Implementation
static InputInlineQueryResultVoiceNote? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputInlineQueryResultVoiceNote(
id: (json['id'] as String?) ?? '',
title: (json['title'] as String?) ?? '',
voiceNoteUrl: (json['voice_note_url'] as String?) ?? '',
voiceNoteDuration: (json['voice_note_duration'] as int?) ?? 0,
replyMarkup: ReplyMarkup.fromJson(tdMapFromJson(json['reply_markup'])),
inputMessageContent: InputMessageContent.fromJson(
tdMapFromJson(json['input_message_content']),
),
);
}