fromReader static method

PhotoResult fromReader(
  1. RecordReader r
)

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(),
);