PageBlockBlockQuote.fromMap constructor
Implementation
PageBlockBlockQuote.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['text'] != null) {
text = TdApiMap.fromMap(map['text']) as RichText;
}
if (map['credit'] != null) {
credit = TdApiMap.fromMap(map['credit']) as RichText;
}
}