fromBlob method

  1. @override
Future<Uint8List> fromBlob(
  1. Blob blob
)
override

blob - a blob of the file to be loaded

Implementation

@override
Future<Uint8List> fromBlob(Blob blob) async{
  _init();
  ThreeFile tf = await _loader.fromBlob(blob);
  return tf.data;
}