UDormBedInvoiceChartResponse.fromMap constructor

UDormBedInvoiceChartResponse.fromMap(
  1. Map<String, dynamic> json
)

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"],
);