broadcastCastTransactionHex method

Future<JSON> broadcastCastTransactionHex(
  1. String hex
)

Implementation

Future<JSON> broadcastCastTransactionHex(String hex) {
  return postCall<JSON>(
    "$baseURL/wallet/broadcasthex",
    data: {"transaction": hex},
  );
}