depositTo method
Implementation
Future<String> depositTo({
required String address,
required BigInt value,
required Credentials credentials,
BigInt? gasPrice,
BigInt? gasLimit,
}) async {
return write(
functionName: 'depositTo',
args: [EthereumAddress.fromHex(address)],
credentials: credentials,
value: value,
);
}