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