signedSerializedTransaction method

List<int> signedSerializedTransaction([
  1. ETHSignature? signature
])

Implementation

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