DialogTitle constructor

const DialogTitle({
  1. Key? key,
  2. required String title,
  3. required bool isDark,
  4. Color? color,
})

Implementation

const DialogTitle({
  super.key,
  required this.title,
  required this.isDark,
  this.color,
});