PageStyle constructor

PageStyle({
  1. required Color appBarColor,
  2. required Color cursorColor,
  3. required Color backgroundCursorColor,
  4. required Color textColor,
  5. required Color confirmColor,
  6. Color? copyButtonColor,
  7. Color? copyButtonTextColor,
  8. Color? resetButtonTextColor,
  9. Color? resetButtonColor,
  10. Color? confirmButtonTextColor,
  11. Color? confirmButtonColor,
})

Creates a new instance of PageStyle. appBarColor: color of the app bar. cursorColor: color of the cursor. backgroundCursorColor: color of the cursor's background. textColor: color of the text. confirmColor: color of the confirm button.

Implementation

PageStyle({
  required this.appBarColor,
  required this.cursorColor,
  required this.backgroundCursorColor,
  required this.textColor,
  required this.confirmColor,
  this.copyButtonColor,
  this.copyButtonTextColor,
  this.resetButtonTextColor,
  this.resetButtonColor,
  this.confirmButtonTextColor,
  this.confirmButtonColor,
});