complete property

bool get complete

Returns true when all of the inputs are fully signed with at least one input and one output. There is no guarentee that the transaction is valid on the blockchain.

Implementation

bool get complete
  => inputs.isNotEmpty && outputs.isNotEmpty
  && inputs.every((input) => input.complete);