loadFile method

  1. @override
Future<Uint8List> loadFile()
override

Load the image.

Implementation

@override
Future<Uint8List> loadFile() async {
  final ByteData byteData = await NetworkAssetBundle(Uri.parse(url)).load('');
  return byteData.buffer.asUint8List();
}