CreateConversion constructor

CreateConversion({
  1. required String buyCurrency,
  2. required String sellCurrency,
  3. required FixedSide fixedSide,
  4. required Decimal amount,
  5. required bool termAgreement,
  6. String? reason,
})

Implementation

CreateConversion({
  required this.buyCurrency,
  required this.sellCurrency,
  required this.fixedSide,
  required this.amount,
  required this.termAgreement,
  this.reason,
});