BsCardBody constructor
const
BsCardBody({
- Key? key,
- Widget? child,
- List<
Widget> ? children, - EdgeInsetsGeometry? padding,
Creates a BsCardBody.
Implementation
const BsCardBody({super.key, this.child, this.children, this.padding})
: assert(
child != null || children != null,
'Either child or children must be provided',
);