signTransactions static method
Send transaction objects to MyAlgo for approval. If approved, the response is a signed transaction object, with the binary blob field base64 encoded to prevent transmission issues.
Implementation
static Future<List<Map<String, dynamic>>> signTransactions(
List transactions,
) async {
final result = await MyAlgoPlatform.instance.signTransactions(
transactions: transactions,
);
return result;
}