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.
23 lines
790 B
23 lines
790 B
1 month ago
|
// 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,
|
||
|
};
|