NiceHighContrastWrapper constructor

const NiceHighContrastWrapper({
  1. Key? key,
  2. required Widget child,
  3. bool enabled = true,
  4. Color? foregroundColor,
  5. Color? backgroundColor,
})

Implementation

const NiceHighContrastWrapper({
  super.key,
  required this.child,
  this.enabled = true,
  this.foregroundColor,
  this.backgroundColor,
});