GcsProfile constructor

GcsProfile({
  1. String? bucket,
  2. String? rootPath,
})

Implementation

factory GcsProfile({
  $core.String? bucket,
  $core.String? rootPath,
}) {
  final $result = create();
  if (bucket != null) {
    $result.bucket = bucket;
  }
  if (rootPath != null) {
    $result.rootPath = rootPath;
  }
  return $result;
}