InlineQueryResultAnimation.fromJson constructor

InlineQueryResultAnimation.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

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