SfPdfViewerThemeData.raw constructor
      
      SfPdfViewerThemeData.raw({ 
    
- Color? backgroundColor,
 - Color? progressBarColor,
 - PdfScrollStatusStyle? scrollStatusStyle,
 - PdfScrollHeadStyle? scrollHeadStyle,
 - PdfBookmarkViewStyle? bookmarkViewStyle,
 - PdfPaginationDialogStyle? paginationDialogStyle,
 - PdfHyperlinkDialogStyle? hyperlinkDialogStyle,
 - PdfPasswordDialogStyle? passwordDialogStyle,
 
Creating an argument constructor of SfPdfViewerThemeData class.
Implementation
factory SfPdfViewerThemeData.raw({
  Color? backgroundColor,
  Color? progressBarColor,
  PdfScrollStatusStyle? scrollStatusStyle,
  PdfScrollHeadStyle? scrollHeadStyle,
  PdfBookmarkViewStyle? bookmarkViewStyle,
  PdfPaginationDialogStyle? paginationDialogStyle,
  PdfHyperlinkDialogStyle? hyperlinkDialogStyle,
  PdfPasswordDialogStyle? passwordDialogStyle,
}) {
  return SfPdfViewerThemeData(
    backgroundColor: backgroundColor,
    progressBarColor: progressBarColor,
    scrollStatusStyle: scrollStatusStyle,
    scrollHeadStyle: scrollHeadStyle,
    bookmarkViewStyle: bookmarkViewStyle,
    paginationDialogStyle: paginationDialogStyle,
    hyperlinkDialogStyle: hyperlinkDialogStyle,
    passwordDialogStyle: passwordDialogStyle,
  );
}