Currency constructor

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

Implementation

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