blobUrlToUint8List function

Future<Uint8List> blobUrlToUint8List(
  1. String blobUrl
)

Implementation

Future<Uint8List> blobUrlToUint8List(String blobUrl) async {
  // This is added to prevent missing function import in services.dart
  // This function will not be accessed in mobile platform.
  throw UnsupportedError(
      'blobUrlToUint8List is not supported on non-web platforms.');
}