ProxyRuleList.fromMap constructor
Implementation
factory ProxyRuleList.fromMap(
Map<String, dynamic> map,
) {
return ProxyRuleList(
total: map['total'],
rules: List<ProxyRule>.from(
map['rules'].map((p) => ProxyRule.fromMap(p)),
),
);
}