userComment property

String? userComment

Implementation

String? get userComment =>
    utf8.decode(data[0x9286]?.toData() ?? [], allowMalformed: true);
void userComment=(String? value)

Implementation

set userComment(String? value) {
  if (value == null) {
    data.remove(0x9286);
  } else {
    data[0x9286] = IfdValueUndefined.list(value.codeUnits);
  }
}