MDialog constructor

const MDialog({
  1. Key? key,
  2. Widget? title,
  3. required Widget child,
  4. double radius = 8,
})

Implementation

const MDialog({Key? key, this.title, required this.child, this.radius = 8}) : super(key: key);