model property

String? model

Implementation

String? get model => data[0x0110]?.toString();
void model=(String? value)

Implementation

set model(String? value) {
  if (value == null) {
    data.remove(0x0110);
  } else {
    data[0x0110] = IfdValueAscii(value);
  }
}