of static method

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