readFileBytesSync method

  1. @override
Uint8List readFileBytesSync(
  1. String fsPath
)
override

Reads raw file bytes as Uint8List.

Implementation

@override
Uint8List readFileBytesSync(String fsPath) {
  return File(fsPath).readAsBytesSync();
}