Paisa constructor

const Paisa({
  1. required Currency from,
  2. required Currency to,
  3. required double amount,
  4. required double rate,
})

Implementation

const Paisa({
  required this.from,
  required this.to,
  required this.amount,
  required this.rate,
});