signTransaction 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<Map<String, dynamic>> signTransaction(
dynamic transaction,
) async {
final result = await MyAlgoPlatform.instance.signTransaction(transaction);
return result;
}