firebase_storage_mocks

Last updated:

0 purchases

firebase_storage_mocks Image
firebase_storage_mocks Images
Add to Cart

Description:

firebase storage mocks

Firebase Storage Mocks #
Mocks for Firebase Storage. Use this package to write unit tests involving Firebase Storage.

Usage #
A simple usage example: (assumes assets/someimage.png exists in project and is included in assets section of pubspec.yaml)
import 'package:firebase_storage_mocks/firebase_storage_mocks.dart';
import 'package:flutter/services.dart' show rootBundle;

main() async {
final storage = MockFirebaseStorage();
const filename = 'someimage.png';
final storageRef = storage.ref().child(filename);
final localImage = await rootBundle.load("assets/$filename");
final task = await storageRef.putData(localImage.buffer.asUint8List());
// Prints 'gs://some-bucket//someimage.png'.
print(task.ref.fullPath);
}
copied to clipboard
Compatibility table #



firebase_storage
firebase_storage_mocks




12.0.0
0.7.0


11.0.0
0.6.0


10.0.0
0.5.1



Features and bugs #
Please file feature requests and bugs at the issue tracker.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.