toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final creationTime = this.creationTime;
final creator = this.creator;
final imageVersion = this.imageVersion;
final instance = this.instance;
final instanceId = this.instanceId;
final instancePreemptionNoticeReceived =
this.instancePreemptionNoticeReceived;
final machineType = this.machineType;
final osRelease = this.osRelease;
final version = this.version;
final zone = this.zone;
return {
'creationTime': ?creationTime,
'creator': ?creator,
'imageVersion': ?imageVersion,
'instance': ?instance,
'instanceId': ?instanceId,
'instancePreemptionNoticeReceived': ?instancePreemptionNoticeReceived,
'machineType': ?machineType,
'osRelease': ?osRelease,
'version': ?version,
'zone': ?zone,
};
}