WcAlert constructor

const WcAlert({
  1. Key? key,
  2. required WcBaseError error,
  3. Color backgroundColor = Colors.deepPurple,
  4. Color textColor = Colors.white,
})

Implementation

const WcAlert({
  super.key,
  required this.error,
  this.backgroundColor = Colors.deepPurple,
  this.textColor = Colors.white,
});