BsCardBody constructor

const BsCardBody({
  1. Key? key,
  2. Widget? child,
  3. List<Widget>? children,
  4. 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',
    );