NbpRate constructor

const NbpRate({
  1. required String currency,
  2. required String code,
  3. required String tableNo,
  4. required DateTime effectiveDate,
  5. required double mid,
})

Implementation

const NbpRate({
  required this.currency,
  required this.code,
  required this.tableNo,
  required this.effectiveDate,
  required this.mid,
});