PageStyle constructor
PageStyle({
- required Color appBarColor,
- required Color cursorColor,
- required Color backgroundCursorColor,
- required Color textColor,
- required Color confirmColor,
- Color? copyButtonColor,
- Color? copyButtonTextColor,
- Color? resetButtonTextColor,
- Color? resetButtonColor,
- Color? confirmButtonTextColor,
- 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,
});