AccessiblyModel constructor

AccessiblyModel({
  1. required int id,
  2. required double currentFontSize,
  3. required bool colorBlindMode,
  4. required bool impairedMode,
  5. required double textScaleFactor,
  6. required String? headingColor,
  7. required String? textColor,
  8. required Color textBgColor,
  9. required Color scaldBgColor,
  10. required double lineHeight,
  11. required double letterSpacing,
  12. required Color? imageColor,
  13. required bool imageVisibility,
  14. required TextAlign textAlignment,
  15. MonochromeMode? monochrome,
  16. required bool systemMode,
  17. required bool isDark,
  18. required String? originalTextColor,
  19. required String? originalHeadingColor,
  20. required String? originalImageColor,
})

Implementation

AccessiblyModel({
  required this.id,
  required this.currentFontSize,
  required this.colorBlindMode,
  required this.impairedMode,
  required this.textScaleFactor,
  required this.headingColor,
  required this.textColor,
  required this.textBgColor,
  required this.scaldBgColor,
  required this.lineHeight,
  required this.letterSpacing,
  required this.imageColor,
  required this.imageVisibility,
  required this.textAlignment,
  this.monochrome,
  required this.systemMode,
  required this.isDark,
  required this.originalTextColor,
  required this.originalHeadingColor,
  required this.originalImageColor,
});