signedSerializedTransaction method
Implementation
List<int> signedSerializedTransaction([ETHSignature? signature]) {
signature ??= _signature;
if (signature == null) {
throw const ETHPluginException(
'The transaction signed serialized cannot be obtained before the signing process.');
}
return _transaction.signedSerialized(signature);
}