UpdateAnimatedEmojiMessageClicked.fromMap constructor

UpdateAnimatedEmojiMessageClicked.fromMap(
  1. Map<String, dynamic> map
)

Implementation

UpdateAnimatedEmojiMessageClicked.fromMap(Map<String, dynamic> map) {
  extra = map['@extra'];
  client_id = map['@client_id'];
  chat_id = map['chat_id'];
  message_id = map['message_id'];
  if (map['sticker'] != null) {
    sticker = TdApiMap.fromMap(map['sticker']) as Sticker;
  }
}