PageStyle constructor

PageStyle({
  1. required Color appBarColor,
  2. required Color cursorColor,
  3. required Color backgroundCursorColor,
  4. required Color textColor,
  5. required Color confirmColor,
})

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,
});