CDialogTheme constructor

const CDialogTheme({
  1. Color? backgroundColor = const Color.fromARGB(255, 2, 48, 32),
  2. Color? titleColor = Colors.amber,
  3. Color? contentColor = Colors.white,
  4. Color? actionsColor = Colors.lightBlueAccent,
  5. Color? actionsOverlayColor = Colors.blue,
})

Constructor to provide new colors for the DialogTheme

Implementation

const CDialogTheme({
  super.backgroundColor = const Color.fromARGB(255, 2, 48, 32),
  this.titleColor = Colors.amber,
  this.contentColor = Colors.white,
  this.actionsColor = Colors.lightBlueAccent,
  this.actionsOverlayColor = Colors.blue,
});