clone method
Clone current tx into a standalone object.
Implementation
Transaction clone() {
bool unsigned = signature == null;
return Transaction.decode(encode(), unsigned);
}
Clone current tx into a standalone object.
Transaction clone() {
bool unsigned = signature == null;
return Transaction.decode(encode(), unsigned);
}