toJson method
Implementation
Map<String, dynamic> toJson() {
final inputAttachmentNameReference = this.inputAttachmentNameReference;
final inputClippingSettings = this.inputClippingSettings;
final urlPath = this.urlPath;
return {
if (inputAttachmentNameReference != null)
'inputAttachmentNameReference': inputAttachmentNameReference,
if (inputClippingSettings != null)
'inputClippingSettings': inputClippingSettings,
if (urlPath != null) 'urlPath': urlPath,
};
}