Translation constructor

Translation(
  1. {int? id,
  2. int? currencyId,
  3. String? locale,
  4. String? name,
  5. String? plural}
)

Implementation

Translation({
  this.id,
  this.currencyId,
  this.locale,
  this.name,
  this.plural,
});