safeTransferFrom method
Implementation
Uint8List safeTransferFrom(
String from, String to, int id, String amount, Uint8List data) {
return safeTransferFromFunc.encodeCall([
EthereumAddress.fromHex(from),
EthereumAddress.fromHex(to),
BigInt.from(id),
BigInt.parse(amount),
data
]);
}