Currency constructor

Currency({
  1. String? id,
  2. String? name,
  3. double? minSize,
  4. String? status,
  5. double? maxPrecision,
  6. List? convertibleTo,
  7. CurrencyDetails? details,
  8. String? statusMessage,
})

Implementation

Currency({
  this.id,
  this.name,
  this.minSize,
  this.status,
  this.maxPrecision,
  this.convertibleTo,
  this.details,
  this.statusMessage,
});