getBytes method

Future<List<int>> getBytes()

Get file as bytes

Implementation

Future<List<int>> getBytes() async {
  return await file.readAsBytes();
}