NetworkStatisticsEntryCall.fromMap constructor
Implementation
NetworkStatisticsEntryCall.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['network_type'] != null) {
network_type = TdApiMap.fromMap(map['network_type']) as NetworkType;
}
sent_bytes = map['sent_bytes'];
received_bytes = map['received_bytes'];
duration = map['duration'];
}