Proof_Threshold constructor

Proof_Threshold({
  1. TxBind? transactionBind,
  2. Iterable<Proof>? responses,
})

Implementation

factory Proof_Threshold({
  $4.TxBind? transactionBind,
  $core.Iterable<Proof>? responses,
}) {
  final _result = create();
  if (transactionBind != null) {
    _result.transactionBind = transactionBind;
  }
  if (responses != null) {
    _result.responses.addAll(responses);
  }
  return _result;
}