argumentAsFileContentBytes method

Uint8List? argumentAsFileContentBytes(
  1. int index, [
  2. File? def
])

Implementation

Uint8List? argumentAsFileContentBytes(int index, [File? def]) {
  var file = argumentAsFile(index, def);
  return file?.readAsBytesSync();
}