listFromJson static method

List<MonthlyInvoiceSummaryModel> listFromJson(
  1. dynamic json
)

Implementation

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