safeTransferFrom method

Uint8List safeTransferFrom(
  1. String from,
  2. String to,
  3. int tokenId
)

Implementation

Uint8List safeTransferFrom(String from, String to, int tokenId) {
  return safeTransferFromFunc.encodeCall([
    EthereumAddress.fromHex(from),
    EthereumAddress.fromHex(to),
    BigInt.from(tokenId)
  ]);
}