toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (allNamespaces != null) 'allNamespaces': allNamespaces!,
      if (encryptionKey != null) 'encryptionKey': encryptionKey!,
      if (includeSecrets != null) 'includeSecrets': includeSecrets!,
      if (includeVolumeData != null) 'includeVolumeData': includeVolumeData!,
      if (selectedApplications != null)
        'selectedApplications': selectedApplications!,
      if (selectedNamespaces != null)
        'selectedNamespaces': selectedNamespaces!,
    };