copyWith method
Implementation
MortgageInterestRate copyWith({double? percentage, String? type}) {
return MortgageInterestRate(
percentage: percentage ?? this.percentage, type: type ?? this.type);
}
MortgageInterestRate copyWith({double? percentage, String? type}) {
return MortgageInterestRate(
percentage: percentage ?? this.percentage, type: type ?? this.type);
}