toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final groupKind = this.groupKind;
final labels = this.labels;
final name = this.name;
final namespace = this.namespace;
return {
'groupKind': ?groupKind,
'labels': ?labels,
'name': ?name,
'namespace': ?namespace,
};
}