toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clientSpecifiedPayloadChecksum = this.clientSpecifiedPayloadChecksum;
final createTime = this.createTime;
final customerManagedEncryption = this.customerManagedEncryption;
final destroyTime = this.destroyTime;
final etag = this.etag;
final name = this.name;
final replicationStatus = this.replicationStatus;
final scheduledDestroyTime = this.scheduledDestroyTime;
final state = this.state;
return {
'clientSpecifiedPayloadChecksum': ?clientSpecifiedPayloadChecksum,
'createTime': ?createTime,
'customerManagedEncryption': ?customerManagedEncryption,
'destroyTime': ?destroyTime,
'etag': ?etag,
'name': ?name,
'replicationStatus': ?replicationStatus,
'scheduledDestroyTime': ?scheduledDestroyTime,
'state': ?state,
};
}