fromJson static method
Inherited by: InlineQueryResultAnimation InlineQueryResultArticle InlineQueryResultAudio InlineQueryResultContact InlineQueryResultDocument InlineQueryResultGame InlineQueryResultLocation InlineQueryResultPhoto InlineQueryResultSticker InlineQueryResultVenue InlineQueryResultVideo InlineQueryResultVoiceNote
Implementation
static InlineQueryResultAnimation? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InlineQueryResultAnimation(
id: (json['id'] as String?) ?? '',
animation: Animation.fromJson(tdMapFromJson(json['animation'])),
title: (json['title'] as String?) ?? '',
);
}