toJson method
Implementation
Map<String, dynamic> toJson() {
final encryption = this.encryption;
final inputKey = this.inputKey;
final presetWatermarkId = this.presetWatermarkId;
return {
if (encryption != null) 'Encryption': encryption,
if (inputKey != null) 'InputKey': inputKey,
if (presetWatermarkId != null) 'PresetWatermarkId': presetWatermarkId,
};
}