CreateBucketResponse constructor Null safety
Implementation
factory CreateBucketResponse({
$core.String? did,
$0.WhereIs? whereIs,
}) {
final _result = create();
if (did != null) {
_result.did = did;
}
if (whereIs != null) {
_result.whereIs = whereIs;
}
return _result;
}