toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['name'] = this.name;
data['label'] = this.label;
data['classNames'] = this.classNames;
data['type'] = this.type;
data['description'] = this.description;
data['defaultSelected'] = this.defaultSelected;
data['selectType'] = this.selectType;
data['componentKey'] = this.componentKey;
data['componentType'] = this.componentType;
data['code'] = this.code;
data['enabled'] = this.enabled;
data['exclusive'] = this.exclusive;
return data;
}