toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final hostGroups = this.hostGroups;
final identifier = this.identifier;
final name = this.name;
final osType = this.osType;
final sizeGib = this.sizeGib;
return {
'hostGroups': ?hostGroups,
'identifier': ?identifier,
'name': ?name,
'osType': ?osType,
'sizeGib': ?sizeGib,
};
}