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
754 B
22 lines
754 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'vip_rule_details.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
VipRuleDetails _$VipRuleDetailsFromJson(Map<String, dynamic> json) => |
|
VipRuleDetails() |
|
..rule = json['rule'] as String? |
|
..contrast = json['contrast'] as String? |
|
..qa = json['qa'] as String? |
|
..recharge = json['recharge'] as String?; |
|
|
|
Map<String, dynamic> _$VipRuleDetailsToJson(VipRuleDetails instance) => |
|
<String, dynamic>{ |
|
'rule': instance.rule, |
|
'contrast': instance.contrast, |
|
'qa': instance.qa, |
|
'recharge': instance.recharge, |
|
};
|
|
|