defaultBlobProviderFactory function

ImageProvider<Object>? defaultBlobProviderFactory(
  1. Uri uri,
  2. ImageProviderParams params
)

default ImageProviderFactory implementation of ImageType.blob.

Implementation

ImageProvider? defaultBlobProviderFactory(Uri uri, ImageProviderParams params) {
  // @TODO: support blob file url
  return null;
}