mapListFromJson static method
Implementation
static Map<String, List<DeleteInvoicedMonthModel>> mapListFromJson(
dynamic json) {
final map = <String, List<DeleteInvoicedMonthModel>>{};
if (json is Map && json.isNotEmpty) {
json.cast<String, dynamic>().forEach((key, dynamic value) {
map[key] = DeleteInvoicedMonthModel.listFromJson(value);
});
}
return map;
}