Orientation property

int? get Orientation

Implementation

int? get Orientation => data[0x0112]?.toInt();
set Orientation (int? value)

Implementation

set Orientation(int? value) {
  if (value == null) {
    data.remove(0x0112);
  } else {
    data[0x0112] = ExifShortValue(value);
  }
}