Transfer constructor

Transfer({
  1. FungibleInfo? fungibleInfo,
  2. NftInfo? nftInfo,
  3. String? direction,
  4. Quantity? quantity,
  5. double? value,
  6. double? price,
})

Implementation

Transfer({
  this.fungibleInfo,
  this.nftInfo,
  this.direction,
  this.quantity,
  this.value,
  this.price,
});