Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 602 Bytes

File metadata and controls

21 lines (14 loc) · 602 Bytes

flutter_cache_manager_firebase

A Firebase implementation for flutter_cache_manager

Getting Started

This library contains FirebaseCacheManager and FirebaseHttpFileService.

You can easily fetch a file stored on Firebase with

var file = await FirebaseCacheManager().getSingleFile(url);

You could also write your own CacheManager which uses the FirebaseHttpFileService.

Custom Firebase storage bucket

You can use a custom bucket by passing bucket parameter. For example:

FirebaseCacheManager(bucket: "my-bucket");