byteData property

Future<Uint8List> byteData

Implementation

Future<Uint8List> get byteData async {
  _bytes ??= (await rootBundle.load(assetKey)).buffer.asUint8List();
  return _bytes!;
}