toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final displayName = this.displayName;
final expireTime = this.expireTime;
final name = this.name;
final owner = this.owner;
final parentSnapshot = this.parentSnapshot;
final postSnapshotAction = this.postSnapshotAction;
final sizeBytes = this.sizeBytes;
final sourceSandboxEnvironment = this.sourceSandboxEnvironment;
final ttl = this.ttl;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'displayName': ?displayName,
'expireTime': ?expireTime,
'name': ?name,
'owner': ?owner,
'parentSnapshot': ?parentSnapshot,
'postSnapshotAction': ?postSnapshotAction,
'sizeBytes': ?sizeBytes,
'sourceSandboxEnvironment': ?sourceSandboxEnvironment,
'ttl': ?ttl,
'updateTime': ?updateTime,
};
}