of static method

DialogThemeData of(
  1. 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;
}