toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customCoreCount = this.customCoreCount;
final fqdn = this.fqdn;
final internalIp = this.internalIp;
final name = this.name;
final nodeTypeId = this.nodeTypeId;
final state = this.state;
final version = this.version;
return {
'customCoreCount': ?customCoreCount,
'fqdn': ?fqdn,
'internalIp': ?internalIp,
'name': ?name,
'nodeTypeId': ?nodeTypeId,
'state': ?state,
'version': ?version,
};
}