MailExportOptions.fromJson constructor

MailExportOptions.fromJson(
  1. Map json_
)

Implementation

MailExportOptions.fromJson(core.Map json_)
    : this(
        exportFormat: json_.containsKey('exportFormat')
            ? json_['exportFormat'] as core.String
            : null,
        exportLinkedDriveFiles: json_.containsKey('exportLinkedDriveFiles')
            ? json_['exportLinkedDriveFiles'] as core.bool
            : null,
        showConfidentialModeContent:
            json_.containsKey('showConfidentialModeContent')
                ? json_['showConfidentialModeContent'] as core.bool
                : null,
        useNewExport: json_.containsKey('useNewExport')
            ? json_['useNewExport'] as core.bool
            : null,
      );