signTransactions static method
Send transaction objects to AlgoSigner for approval. The Network is determined from the 'genesis-id' property. If approved, the response is an array of signed transaction objects, with the binary blob field base64 encoded to prevent transmission issues.
Implementation
static Future<List<Map<String, dynamic>>> signTransactions(
List<Map<String, dynamic>> transactions,
) async {
final result = await AlgoSignerPlatform.instance
.signTransactions(transactions: transactions);
return result;
}