Software property

String? Software

Implementation

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

Implementation

set Software(String? value) {
  if (value == null) {
    data.remove(0x0131);
  } else {
    data[0x0131] = ExifAsciiValue(value);
  }
}