InlineQueryResultSticker.fromJson constructor

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

Parse from a json

Implementation

factory InlineQueryResultSticker.fromJson(Map<String, dynamic> json) => InlineQueryResultSticker(
  id: json['id'],
  sticker: Sticker.fromJson(json['sticker']),
);