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