DigitTableCard constructor

const DigitTableCard({
  1. Key? key,
  2. required Map<String, dynamic> element,
  3. Border? border,
  4. Color? color,
  5. EdgeInsetsGeometry? padding,
  6. double gap = 0,
  7. num fraction = 1.8,
  8. EdgeInsetsGeometry? topPadding,
  9. TextStyle? labelStyle,
  10. TextStyle? descriptionStyle,
})

Implementation

const DigitTableCard({
  super.key,
  required this.element,
  this.border,
  this.color,
  this.padding,
  this.gap = 0,
  this.fraction = 1.8,
  this.topPadding,
  this.labelStyle,
  this.descriptionStyle,
});