BankRepaymentScheduleView constructor
const
BankRepaymentScheduleView({
- required InstallmentPlan plan,
- Key? key,
- int? highlightMonthIndex,
- bool islamicFinanceMode = false,
- String monthHeaderLabel = 'Month',
- String interestHeaderLabel = 'Interest',
- String profitHeaderLabel = 'Profit',
- String paymentHeaderLabel = 'Payment',
- String monthTemplate = 'Month {n}',
- String totalLabel = 'Total repayable',
- Color? accentColor,
- Color? dividerColor,
- EdgeInsetsGeometry? headerPadding,
- EdgeInsetsGeometry? rowPadding,
- TextStyle? headerStyle,
- TextStyle? monthStyle,
- TextStyle? interestStyle,
- TextStyle? amountStyle,
- TextStyle? totalStyle,
Implementation
const BankRepaymentScheduleView({
required this.plan,
super.key,
this.highlightMonthIndex,
this.islamicFinanceMode = false,
this.monthHeaderLabel = 'Month',
this.interestHeaderLabel = 'Interest',
this.profitHeaderLabel = 'Profit',
this.paymentHeaderLabel = 'Payment',
this.monthTemplate = 'Month {n}',
this.totalLabel = 'Total repayable',
this.accentColor,
this.dividerColor,
this.headerPadding,
this.rowPadding,
this.headerStyle,
this.monthStyle,
this.interestStyle,
this.amountStyle,
this.totalStyle,
});