storage method

String storage(
  1. String path, {
  2. Map<String, dynamic>? query,
})

Get URL for a file in storage.

Implementation

String storage(String path, {Map<String, dynamic>? query}) {
  return _urlService.storage(path, query: query);
}