UDormBedInvoiceChartResponse.fromMap constructor
Implementation
factory UDormBedInvoiceChartResponse.fromMap(Map<String, dynamic> json) => UDormBedInvoiceChartResponse(
month: json["month"] as String,
totalDebt: json["totalDebt"],
totalPaid: json["totalPaid"],
totalPenalty: json["totalPenalty"],
totalRemaining: json["totalRemaining"],
invoiceCount: json["invoiceCount"],
);