MsgBox constructor

const MsgBox({
  1. required BuildContext context,
  2. String? title,
  3. String? msg,
  4. List<Widget>? body,
  5. List<Widget>? actions,
})

Supply a Message box

Implementation

const MsgBox({
  required this.context,
  this.title,
  this.msg,
  this.body,
  this.actions,
});