PageStyle constructor
PageStyle({})
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,
});