Orientation property

int? Orientation

Implementation

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

Implementation

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