TCardStyle constructor

const TCardStyle({
  1. EdgeInsets? margin,
  2. EdgeInsets? padding,
  3. double? elevation,
  4. BorderRadius? borderRadius,
  5. Color? backgroundColor,
  6. Border? border,
})

Implementation

const TCardStyle({
  this.margin,
  this.padding,
  this.elevation,
  this.borderRadius,
  this.backgroundColor,
  this.border,
});