content property

Widget? content
final

The (optional) content of the dialog is displayed in the center of the dialog in a lighter font.

Typically this is a SingleChildScrollView that contains the dialog's message. As noted in the AlertDialog documentation, it's important to use a SingleChildScrollView if there's any risk that the content will not fit.

Implementation

final Widget? content;