depositTo method
Implementation
Future<flutter_web3.TransactionResponse> depositTo({
required String address,
required BigInt value,
required Credentials credentials,
BigInt? gasPrice,
BigInt? gasLimit,
}) async {
return contract.send('depositTo', [
EthereumAddress.fromHex(address),
]);
}