send static method
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;
}