toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (appInstalled != null) 'appInstalled': appInstalled!,
  if (canCreateDrives != null) 'canCreateDrives': canCreateDrives!,
  if (canCreateTeamDrives != null)
    'canCreateTeamDrives': canCreateTeamDrives!,
  if (driveThemes != null) 'driveThemes': driveThemes!,
  if (exportFormats != null) 'exportFormats': exportFormats!,
  if (folderColorPalette != null) 'folderColorPalette': folderColorPalette!,
  if (importFormats != null) 'importFormats': importFormats!,
  if (kind != null) 'kind': kind!,
  if (maxImportSizes != null) 'maxImportSizes': maxImportSizes!,
  if (maxUploadSize != null) 'maxUploadSize': maxUploadSize!,
  if (storageQuota != null) 'storageQuota': storageQuota!,
  if (teamDriveThemes != null) 'teamDriveThemes': teamDriveThemes!,
  if (user != null) 'user': user!,
};