readBytes method

List<int> readBytes(
  1. String path
)

Implementation

List<int> readBytes(String path) {
  onEvent?.call(ApplyFileEvent.verify, path);
  return File(path).readAsBytesSync();
}