MessageGiftedPremium.fromMap constructor
Implementation
MessageGiftedPremium.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
currency = map['currency'];
amount = map['amount'];
month_count = map['month_count'];
if (map['sticker'] != null) {
sticker = TdApiMap.fromMap(map['sticker']) as Sticker;
}
}