sendTransaction method

Future<BlockchainResponse> sendTransaction(
  1. String txhex
)

Implementation

Future<BlockchainResponse> sendTransaction(String txhex) async {
  final res = await polygonRpcClient.sendTransaction(txhex);
  return res;
}