plugintestTheme constructor

const plugintestTheme({
  1. double width = 70,
  2. double height = double.infinity,
  3. EdgeInsets padding = EdgeInsets.zero,
  4. EdgeInsets margin = EdgeInsets.zero,
  5. BoxDecoration? decoration,
  6. IconThemeData? iconTheme,
  7. IconThemeData? selectedIconTheme,
  8. TextStyle? textStyle,
  9. TextStyle? selectedTextStyle,
  10. BoxDecoration? itemDecoration,
  11. BoxDecoration? selectedItemDecoration,
  12. EdgeInsets? itemMargin,
  13. EdgeInsets? selectedItemMargin,
  14. EdgeInsets? itemPadding,
  15. EdgeInsets? selectedItemPadding,
  16. EdgeInsets? itemTextPadding,
  17. EdgeInsets? selectedItemTextPadding,
  18. Color? hoverColor,
  19. TextStyle? hoverTextStyle,
})

Implementation

const plugintestTheme({
  this.width = 70,
  this.height = double.infinity,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
  this.decoration,
  this.iconTheme,
  this.selectedIconTheme,
  this.textStyle,
  this.selectedTextStyle,
  this.itemDecoration,
  this.selectedItemDecoration,
  this.itemMargin,
  this.selectedItemMargin,
  this.itemPadding,
  this.selectedItemPadding,
  this.itemTextPadding,
  this.selectedItemTextPadding,
  this.hoverColor,
  this.hoverTextStyle,
});