GCS constructor

GCS({
  1. String? remotePath,
})

Implementation

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