// GENERATED CODE - DO NOT MODIFY BY HAND part of 'invoice_list_model.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** InvoiceListModel _$InvoiceListModelFromJson(Map json) { return InvoiceListModel( json['code'], (json['data'] as List) ?.map((e) => e == null ? null : Invoice.fromJson(e as Map)) ?.toList(), json['msg']); } Map _$InvoiceListModelToJson(InvoiceListModel instance) => { 'code': instance.code, 'msg': instance.msg, 'data': instance.data };