ActiveTotalBean.fromJson constructor
Implementation
ActiveTotalBean.fromJson(Map<String, dynamic> json) {
totalAmount = json["totalAmount"] ?? 0;
if (json["propsInfo"] != null) {
propsInfo = List<PropsInfoBean>.empty(growable: true);
json['propsInfo'].forEach((v) {
propsInfo.add(PropsInfoBean.fromJson(v));
});
}
}