DecisionCard constructor

DecisionCard({
  1. required DecisionData data,
  2. Border? border = Border.rounded,
  3. EdgeInsets? padding,
  4. Color? background,
  5. Key? key,
})

Implementation

DecisionCard({
  required this.data,
  this.border = Border.rounded,
  this.padding,
  this.background,
  super.key,
});