ThemedCard constructor

const ThemedCard({
  1. Key? key,
  2. required Widget child,
  3. required CardTheme lightTheme,
  4. required CardTheme darkTheme,
  5. bool borderOnForeground = true,
  6. bool semanticContainer = true,
  7. ThemedCardType type = ThemedCardType.normal,
})

Implementation

const ThemedCard({
  super.key,
  required this.child,
  required this.lightTheme,
  required this.darkTheme,
  this.borderOnForeground = true,
  this.semanticContainer = true,
  this.type = ThemedCardType.normal,
});