BankRecurringTotalHeader constructor

const BankRecurringTotalHeader({
  1. required List<BankRecurringMerchant> merchants,
  2. Key? key,
  3. String monthlyTemplate = 'You spend {amount}/month on {count} subscriptions',
  4. String yearlyTemplate = 'About {amount}/year',
  5. EdgeInsetsGeometry? padding,
  6. BorderRadius? radius,
  7. Color? backgroundColor,
  8. TextStyle? headlineStyle,
  9. TextStyle? sublineStyle,
})

Implementation

const BankRecurringTotalHeader({
  required this.merchants,
  super.key,
  this.monthlyTemplate = 'You spend {amount}/month on {count} subscriptions',
  this.yearlyTemplate = 'About {amount}/year',
  this.padding,
  this.radius,
  this.backgroundColor,
  this.headlineStyle,
  this.sublineStyle,
});