toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectionInfo = this.connectionInfo;
final createTime = this.createTime;
final displayName = this.displayName;
final expireTime = this.expireTime;
final latestSandboxEnvironmentSnapshot =
this.latestSandboxEnvironmentSnapshot;
final name = this.name;
final owner = this.owner;
final sandboxEnvironmentSnapshot = this.sandboxEnvironmentSnapshot;
final sandboxEnvironmentTemplate = this.sandboxEnvironmentTemplate;
final spec = this.spec;
final state = this.state;
final ttl = this.ttl;
final updateTime = this.updateTime;
return {
'connectionInfo': ?connectionInfo,
'createTime': ?createTime,
'displayName': ?displayName,
'expireTime': ?expireTime,
'latestSandboxEnvironmentSnapshot': ?latestSandboxEnvironmentSnapshot,
'name': ?name,
'owner': ?owner,
'sandboxEnvironmentSnapshot': ?sandboxEnvironmentSnapshot,
'sandboxEnvironmentTemplate': ?sandboxEnvironmentTemplate,
'spec': ?spec,
'state': ?state,
'ttl': ?ttl,
'updateTime': ?updateTime,
};
}