listAll method

Future<ListResult> listAll({
  1. String filePath = '/',
})

Lists all items under a specified filePath in Firebase Storage.

Implementation

Future<firebase_storage.ListResult> listAll({String filePath = '/'}) async {
  return await storage.ref(filePath).listAll();
}