resolutionUnit property
int?
get
resolutionUnit
Implementation
int? get resolutionUnit => data[0x0128]?.toInt();
set
resolutionUnit
(int? value)
Implementation
set resolutionUnit(int? value) {
if (value == null) {
data.remove(0x0128);
} else {
data[0x0128] = IfdValueShort(value);
}
}