readContentAsBytes method

Future<Uint8List> readContentAsBytes()
inherited

Implementation

Future<Uint8List> readContentAsBytes() async {
  var contentFileEntry = getContentFileEntry();
  var content = openContentStream(contentFileEntry);
  return Uint8List.fromList(content);
}