decodeFromStream method

Future<MovieEntity> decodeFromStream(
  1. Uint8List stream
)

Download animation file from bundle assets, and decode it.

Implementation

Future<MovieEntity> decodeFromStream(Uint8List stream) async {
  return decodeFromBuffer(stream);
}