EpubViewManager constructor

EpubViewManager({
  1. required String ebookUri,
  2. required String title,
  3. required AppBarTheme appBarTheme,
  4. bool? isLightMode,
  5. dynamic changeAppBarTheme()?,
  6. List<String>? dropDownItemList,
  7. Widget? dropDownButtonIcon,
  8. String? initialValue,
  9. dynamic onDropDownItemSelected(
    1. String? value
    )?,
})

Implementation

EpubViewManager({
  required this.ebookUri,
  required this.title,
  required this.appBarTheme,
  this.isLightMode,
  this.changeAppBarTheme,
  this.dropDownItemList,
  this.dropDownButtonIcon,
  this.initialValue,
  this.onDropDownItemSelected,
});