CreateBucketResponse constructor Null safety

CreateBucketResponse(
  1. {String? did,
  2. WhereIs? whereIs}
)

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;
}