optionAsFileContentBytes method

Uint8List? optionAsFileContentBytes(
  1. String key, [
  2. File? def
])

Implementation

Uint8List? optionAsFileContentBytes(String key, [File? def]) {
  var file = optionAsFile(key, def);
  return file?.readAsBytesSync();
}