fromReader static method
Implementation
static PhotoResult fromReader(RecordReader r) => PhotoResult(
path: r.readString(),
width: r.readInt(),
height: r.readInt(),
fileSize: r.readInt(),
orientation: r.readInt(),
isMirrored: r.readInt(),
timestamp: r.readInt(),
);