CategorySummary constructor

CategorySummary({
  1. TextStyle? labelStyle,
  2. TextStyle? valueStyle,
  3. double elevation = 0,
  4. double gapSize = 10,
  5. double margin = 20,
  6. required Icon icon,
  7. required String labelText,
  8. required String currency,
  9. required String value,
})

Implementation

CategorySummary(
    {this.labelStyle,
    this.valueStyle,
    this.elevation = 0,
    this.gapSize = 10,
    this.margin = 20,
    required this.icon,
    required this.labelText,
    required this.currency,
    required this.value});