PremiumLimit.fromMap constructor
Implementation
PremiumLimit.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['type'] != null) {
type = TdApiMap.fromMap(map['type']) as PremiumLimitType;
}
default_value = map['default_value'];
premium_value = map['premium_value'];
}