MailExportOptions.fromJson constructor

MailExportOptions.fromJson(
  1. Map json_
)

Implementation

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