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