listFromJson static method
Implementation
static List<MonthlyInvoiceSummaryModel> listFromJson(dynamic json) =>
json is List && json.isNotEmpty
? json.map(MonthlyInvoiceSummaryModel.fromJson).toList()
: <MonthlyInvoiceSummaryModel>[];