of static method
- BuildContext context
The ThemeData.dialogTheme property of the ambient Theme.
Implementation
static DialogThemeData of(BuildContext context) {
final DialogTheme? dialogTheme = context.dependOnInheritedWidgetOfExactType<DialogTheme>();
return dialogTheme?.data ?? Theme.of(context).dialogTheme;
}