byteValue property
Uint8List?
get
byteValue
Implementation
Uint8List? get byteValue {
if (!file.existsSync()) {
return null;
}
return file.readAsBytesSync();
}
Uint8List? get byteValue {
if (!file.existsSync()) {
return null;
}
return file.readAsBytesSync();
}