Currency constructor

Currency(
  1. {int? id,
  2. String? code,
  3. String? type,
  4. String? mainExchange,
  5. DateTime? createdAt,
  6. DateTime? updatedAt,
  7. String? name,
  8. String? plural,
  9. List<Translation>? translations}
)

Implementation

Currency({
  this.id,
  this.code,
  this.type,
  this.mainExchange,
  this.createdAt,
  this.updatedAt,
  this.name,
  this.plural,
  this.translations,
});