StorageApi constructor

StorageApi(
  1. Client client, {
  2. String rootUrl = 'https://storage.flutter-io.cn/',
  3. String servicePath = 'storage/v1/',
})

Implementation

StorageApi(
  http.Client client, {
  core.String rootUrl = 'https://storage.flutter-io.cn/',
  core.String servicePath = 'storage/v1/',
}) : _requester = commons.ApiRequester(
       client,
       rootUrl,
       servicePath,
       requestHeaders,
     );