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] = IfdValueShort(value);
  }
}