MyFancyDialog constructor

MyFancyDialog({
  1. double buttonHeight = 50,
  2. double radiusSmall = 6,
  3. double radius = 25,
  4. double iconSize = 50,
  5. Color iconColor = Colors.white,
  6. List<String> actionsInCol = const ["Cancel"],
  7. List<String> actionsInRow = const ["Confirm"],
  8. String title = "",
  9. String body = "",
  10. IconData? icon,
  11. List<String> inputs = const [],
  12. List<String> numberInputs = const [],
  13. List<String> multiLineInputs = const [],
  14. List<String> dateTimes = const [],
  15. Color color = const Color(0xfffad82f),
})

Implementation

MyFancyDialog(
    {this.buttonHeight = 50,
      this.radiusSmall = 6,
      this.radius = 25,
      this.iconSize = 50,
      this.iconColor = Colors.white,
      this.actionsInCol = const ["Cancel"],
      this.actionsInRow = const ["Confirm"],
      this.title = "",
      this.body = "",
      this.icon,
      this.inputs = const [],
      this.numberInputs = const [],
      this.multiLineInputs = const [],
      this.dateTimes = const [],
      this.color = const Color(0xfffad82f)});