signTransaction method
Converts a transaction request produced by generateTransaction into a properly signed transaction, which can then be submitted to the blockchain.
Implementation
Uint8List signTransaction(
AptosAccount accountFrom,
RawTransaction rawTransaction
) {
return AptosClient.generateBCSTransaction(accountFrom, rawTransaction);
}