MortgageInterestRate constructor

MortgageInterestRate({
  1. required double? percentage,
  2. required String? type,
})

Implementation

MortgageInterestRate({
  required this.percentage,
  required this.type,
});