Conversion constructor

Conversion({
  1. required String id,
  2. DateTime? settlementDate,
  3. DateTime? conversionDate,
  4. DateTime? createdAt,
  5. DateTime? updatedAt,
  6. String? status,
  7. String? buyCurrency,
  8. String? sellCurrency,
  9. Decimal? clientBuyAmount,
  10. Decimal? clientSellAmount,
  11. FixedSide? fixedSide,
  12. Decimal? coreRate,
})

Implementation

Conversion({
  required this.id,
  this.settlementDate,
  this.conversionDate,
  this.createdAt,
  this.updatedAt,
  this.status,
  this.buyCurrency,
  this.sellCurrency,
  this.clientBuyAmount,
  this.clientSellAmount,
  this.fixedSide,
  this.coreRate,
});