|
- // GENERATED CODE - DO NOT MODIFY BY HAND
-
- part of 'Supply.dart';
-
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
-
- Supply _$SupplyFromJson(Map<String, dynamic> json) {
- return Supply()
- ..id = json['id'] as num
- ..name = json['name'] as String
- ..sku = json['sku'] as String
- ..manufacturer = json['manufacturer'] as String
- ..unit = json['unit'] as String
- ..tbSuppliesTypeId = json['tbSuppliesTypeId'] as num
- ..tbCustomerId = json['tbCustomerId'] as num
- ..isSelected = false;
- }
-
- Map<String, dynamic> _$SupplyToJson(Supply instance) => <String, dynamic>{
- 'id': instance.id,
- 'name': instance.name,
- 'sku': instance.sku,
- 'manufacturer': instance.manufacturer,
- 'unit': instance.unit,
- 'tbSuppliesTypeId': instance.tbSuppliesTypeId,
- 'tbCustomerId': instance.tbCustomerId,
- };
|