readFileAsBytes function

Future<Uint8List> readFileAsBytes(
  1. String path
)

Implementation

Future<Uint8List> readFileAsBytes(String path) async {
  return await File(path).readAsBytes();
}