DialogWidget constructor

DialogWidget(
  1. {@required String title,
  2. @required String msg,
  3. List<Widget> actions,
  4. String animation,
  5. TextStyle titleStyle,
  6. TextStyle msgStyle,
  7. Color color}
)

Implementation

DialogWidget({
  @required this.title,
  @required this.msg,
  this.actions,
  this.animation,
  this.titleStyle,
  this.msgStyle,
  this.color,
});