from method

StorageFileApi from(
  1. String id
)

Perform file operation in a bucket.

id The bucket id to operate on.

Implementation

StorageFileApi from(String id) {
  return StorageFileApi(
    url,
    headers,
    id,
    _defaultRetryAttempts,
    storageFetch,
  );
}