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.
48 lines
809 B
48 lines
809 B
3 years ago
|
/// rule : ""
|
||
|
/// contrast : ""
|
||
|
/// qa : ""
|
||
|
|
||
|
class VipRuleDetails {
|
||
|
VipRuleDetails({
|
||
|
String rule,
|
||
|
String contrast,
|
||
|
String qa,}){
|
||
|
_rule = rule;
|
||
|
_contrast = contrast;
|
||
|
_qa = qa;
|
||
|
}
|
||
|
|
||
|
VipRuleDetails.fromJson(dynamic json) {
|
||
|
_rule = json['rule'];
|
||
|
_contrast = json['contrast'];
|
||
|
_qa = json['qa'];
|
||
|
}
|
||
|
String _rule;
|
||
|
String _contrast;
|
||
|
String _qa;
|
||
|
|
||
|
String get rule => _rule;
|
||
|
String get contrast => _contrast;
|
||
|
String get qa => _qa;
|
||
|
|
||
|
|
||
|
set rule(String value) {
|
||
|
_rule = value;
|
||
|
}
|
||
|
|
||
|
Map<String, dynamic> toJson() {
|
||
|
final map = <String, dynamic>{};
|
||
|
map['rule'] = _rule;
|
||
|
map['contrast'] = _contrast;
|
||
|
map['qa'] = _qa;
|
||
|
return map;
|
||
|
}
|
||
|
|
||
|
set contrast(String value) {
|
||
|
_contrast = value;
|
||
|
}
|
||
|
|
||
|
set qa(String value) {
|
||
|
_qa = value;
|
||
|
}
|
||
|
}
|