copyWith method
Implementation
BankSlipOptions copyWith({
bool? active,
int? extraDueDays,
bool? reprintExtraDueDays,
}) {
return BankSlipOptions(
active: active ?? this.active,
extraDueDays: extraDueDays ?? this.extraDueDays,
reprintExtraDueDays: reprintExtraDueDays ?? this.reprintExtraDueDays,
);
}