Conversion constructor

Conversion({
  1. String? id,
  2. double? amount,
  3. String? fromAccountId,
  4. String? toAccountId,
  5. String? from,
  6. String? to,
})

Implementation

Conversion({
  this.id,
  this.amount,
  this.fromAccountId,
  this.toAccountId,
  this.from,
  this.to,
});