update method

void update({
  1. Uint8List? tapKeySig,
  2. List<Uint8List>? witness,
})

Implementation

void update({Uint8List? tapKeySig, List<Uint8List>? witness}) {
  if (tapKeySig != null) this.tapKeySig = tapKeySig;
  if (witness != null) this.witness = witness;
}