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 (permissiveMode != null) 'permissiveMode': permissiveMode!,
  if (selectedApplications != null)
    'selectedApplications': selectedApplications!,
  if (selectedNamespaceLabels != null)
    'selectedNamespaceLabels': selectedNamespaceLabels!,
  if (selectedNamespaces != null) 'selectedNamespaces': selectedNamespaces!,
};