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.
 
 
 
 
 
 

28 lines
946 B

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'brand.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
Brand _$BrandFromJson(Map<String, dynamic> json) => Brand()
..name = json['name'] as String?
..image = json['image'] as String?
..video = json['video'] as String?
..desc = json['desc'] as String?
..content = json['content'] as String?
..icon = json['icon'] as String?
..sort = (json['sort'] as num?)?.toInt()
..storeId = json['storeId'] as String?;
Map<String, dynamic> _$BrandToJson(Brand instance) => <String, dynamic>{
'name': instance.name,
'image': instance.image,
'video': instance.video,
'desc': instance.desc,
'content': instance.content,
'icon': instance.icon,
'sort': instance.sort,
'storeId': instance.storeId,
};