CarpenterDialog constructor

const CarpenterDialog({
  1. Key? key,
  2. required Widget title,
  3. required Widget content,
  4. List<Widget> actions = const [],
  5. BoxConstraints constraints = const BoxConstraints(maxWidth: 720, maxHeight: 760),
})

Implementation

const CarpenterDialog({
  super.key,
  required this.title,
  required this.content,
  this.actions = const [],
  this.constraints = const BoxConstraints(maxWidth: 720, maxHeight: 760),
});