DevToolsDialog constructor

const DevToolsDialog({
  1. Key? key,
  2. Widget? title,
  3. required Widget content,
  4. bool includeDivider = true,
  5. bool scrollable = true,
  6. List<Widget>? actions,
  7. MainAxisAlignment? actionsAlignment,
})

Implementation

const DevToolsDialog({
  super.key,
  Widget? title,
  required this.content,
  this.includeDivider = true,
  this.scrollable = true,
  this.actions,
  this.actionsAlignment,
}) : titleContent = title ?? const SizedBox();