SoftUiCard constructor

const SoftUiCard({
  1. required Widget body,
  2. List<Widget> actions = const [],
  3. bool isFull = false,
  4. String? title,
  5. Widget? header,
  6. Widget? footer,
  7. Color? color,
  8. EdgeInsets? padding,
  9. Key? key,
})

Implementation

const SoftUiCard({
  required this.body,
  this.actions = const [],
  this.isFull = false,
  this.title,
  this.header,
  this.footer,
  this.color,
  this.padding,
  super.key,
});