toJson method

Map<String, dynamic> toJson()

Implementation

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