Rate constructor

Rate({
  1. int? tenure,
  2. double? interest,
})

Implementation

Rate({
  this.tenure,
  this.interest,
});