send static method

Future<String> send({
  1. required String ledger,
  2. required String transaction,
})

Send a base64 encoded signed transaction blob to AlgoSigner to transmit to the Network.

Returns the id of the transactions.

Implementation

static Future<String> send({
  required String ledger,
  required String transaction,
}) async {
  final txId = await AlgoSignerPlatform.instance.send(
    ledger: ledger,
    transaction: transaction,
  );

  return txId;
}