copyright property

String? copyright

Implementation

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

Implementation

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