getDataWithPath method

  1. @override
Future<Uint8List?> getDataWithPath(
  1. String filePath, [
  2. int maxSize = 10485760
])
override

Implementation

@override
Future<Uint8List?> getDataWithPath(String filePath,
    [int maxSize = 10485760]) async {
  final ref = storage.ref().child(filePath);
  return ref.getData(maxSize);
}