StockholmDialog constructor

const StockholmDialog({
  1. required Widget title,
  2. required Widget contents,
  3. List<Widget>? actionButtons,
  4. double width = 500,
  5. Key? key,
})

Implementation

const StockholmDialog({
  required this.title,
  required this.contents,
  this.actionButtons,
  this.width = 500,
  Key? key,
}) : super(key: key);