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