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.
22 lines
790 B
22 lines
790 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'platter.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
Platter _$PlatterFromJson(Map<String, dynamic> json) => Platter() |
|
..deleted = json['deleted'] as bool? |
|
..id = (json['id'] as num?)?.toInt() |
|
..productId = (json['productId'] as num?)?.toInt() |
|
..required = json['required'] as bool? |
|
..skuId = (json['skuId'] as num?)?.toInt(); |
|
|
|
Map<String, dynamic> _$PlatterToJson(Platter instance) => <String, dynamic>{ |
|
'deleted': instance.deleted, |
|
'id': instance.id, |
|
'productId': instance.productId, |
|
'required': instance.required, |
|
'skuId': instance.skuId, |
|
};
|
|
|