list method

Lists objects under the path with optional StorageListOptions and returns a StorageListOperation.

Implementation

StorageListOperation list({
  String? path,
  StorageListOptions? options,
}) {
  return identifyCall(
    StorageCategoryMethod.list,
    () => defaultPlugin.list(
      path: path,
      options: options,
    ),
  );
}