nonSegwitInputs property

Iterable<BTCInput> get nonSegwitInputs

Implementation

Iterable<BTCInput> get nonSegwitInputs {
  return inputs.where((input) => input.hasWitness == false);
}