CardTheme constructor

const CardTheme({
  1. EdgeInsetsGeometry? padding,
  2. bool? filled,
  3. Color? fillColor,
  4. BorderRadiusGeometry? borderRadius,
  5. Color? borderColor,
  6. double? borderWidth,
  7. Clip? clipBehavior,
  8. List<BoxShadow>? boxShadow,
  9. double? surfaceOpacity,
  10. double? surfaceBlur,
  11. Duration? duration,
})

Creates a CardTheme.

Implementation

const CardTheme({
  this.padding,
  this.filled,
  this.fillColor,
  this.borderRadius,
  this.borderColor,
  this.borderWidth,
  this.clipBehavior,
  this.boxShadow,
  this.surfaceOpacity,
  this.surfaceBlur,
  this.duration,
});