toJson method
Implementation
Map<String, Object?> toJson() {
var configuration = this.configuration;
var nodeType = this.nodeType;
var type = this.type;
final json = <String, Object?>{};
if (configuration != null) {
json[r'configuration'] = configuration;
}
json[r'nodeType'] = nodeType;
json[r'type'] = type;
return json;
}