copyWithWrapped method
Implementation
MortgageInterestRate copyWithWrapped(
{Wrapped<double?>? percentage, Wrapped<String?>? type}) {
return MortgageInterestRate(
percentage: (percentage != null ? percentage.value : this.percentage),
type: (type != null ? type.value : this.type));
}