BsCard constructor

const BsCard({
  1. Key? key,
  2. required List<Widget> children,
  3. EdgeInsetsGeometry? margin,
  4. AlignmentGeometry? alignment,
  5. BsCardStyle style = const BsCardStyle(),
})

Implementation

const BsCard({
  Key? key,
  required this.children,
  this.margin,
  this.alignment,
  this.style = const BsCardStyle(),
}) : super(key: key);