FXRate constructor

FXRate({
  1. int? sequenceNo,
  2. String? id,
  3. String? name,
  4. String? iconUrl,
  5. String? amount,
  6. int? fx,
  7. String? currencyCode,
})

Implementation

FXRate({
  this.sequenceNo,
  this.id,
  this.name,
  this.iconUrl,
  this.amount,
  this.fx,
  this.currencyCode,
});