getData method

Future<Uint8List?> getData(
  1. int maxSize
)

Asynchronously downloads the object at the StorageReference to a list in memory.

Returns a Uint8List of the data. If the maxSize (in bytes) is exceeded, the operation will be canceled.

Implementation

Future<Uint8List?> getData(int maxSize) async {
  throw UnimplementedError('getData() is not implemented');
}