toJson method
Converts a SelfSubjectRulesReviewSpec instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempNamespace = namespace;
if (tempNamespace != null) {
jsonData['namespace'] = tempNamespace;
}
return jsonData;
}