InlineQueryResultVoiceNote.fromJson constructor
Parse from a json
Implementation
factory InlineQueryResultVoiceNote.fromJson(Map<String, dynamic> json) =>
InlineQueryResultVoiceNote(
id: json['id'],
voiceNote: VoiceNote.fromJson(json['voice_note']),
title: json['title'],
);