Skip to content

Commit 69b8889

Browse files
minhdanhmartijn00
authored andcommitted
Update related README
1 parent 516dff8 commit 69b8889

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

flutter_cache_manager_firebase/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,16 @@ A Firebase implementation for [flutter_cache_manager](https://pub.dev/packages/f
66

77
This library contains FirebaseCacheManager and FirebaseHttpFileService.
88

9-
You can easily fetch a file stored on Firebase with
9+
You can easily fetch a file stored on Firebase with
1010
```dart
1111
var file = await FirebaseCacheManager().getSingleFile(url);
1212
```
1313

14-
You could also write your own CacheManager which uses the FirebaseHttpFileService.
14+
You could also write your own CacheManager which uses the FirebaseHttpFileService.
15+
16+
### Custom Firebase storage bucket
17+
18+
You can use a custom bucket by passing `bucket` parameter. For example:
19+
```dart
20+
FirebaseCacheManager(bucket: "my-bucket");
21+
```

0 commit comments

Comments
 (0)