You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
app/lib/models/invoice_list_model.g.dart

25 lines
750 B

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