NftTransfer constructor

NftTransfer({
  1. required int queryId,
  2. required InternalAddress from,
  3. required InternalAddress to,
  4. InternalAddress? responseTo,
  5. required Cell customPayload,
  6. required BigInt forwardAmount,
  7. required Cell forwardPayload,
})

Implementation

NftTransfer({
  required this.queryId,
  required this.from,
  required this.to,
  this.responseTo,
  required this.customPayload,
  required this.forwardAmount,
  required this.forwardPayload,
});