TMessageDialog constructor

const TMessageDialog({
  1. Key? key,
  2. Widget? title,
  3. required Widget content,
  4. Color? backgroundColor,
})

Implementation

const TMessageDialog({
  super.key,
  this.title,
  required this.content,
  this.backgroundColor,
});