InlineQueryResultAnimation.fromJson constructor
Parse from a json
Implementation
factory InlineQueryResultAnimation.fromJson(Map<String, dynamic> json) => InlineQueryResultAnimation(
id: json['id'],
animation: Animation.fromJson(json['animation']),
title: json['title'],
);