BsCardHeader constructor

const BsCardHeader({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
  4. Color? backgroundColor,
  5. Color? borderColor,
})

Creates a BsCardHeader.

Implementation

const BsCardHeader({
  super.key,
  required this.child,
  this.padding,
  this.backgroundColor,
  this.borderColor,
});