toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> json = {
'configName': configName,
'isEnabled': isEnabled,
};
if (exceptionList != null) {
json['exceptionList'] = exceptionList;
}
return json;
}