SigningOutput constructor

SigningOutput({
  1. List<int>? encoded,
  2. List<int>? txId,
  3. SigningError? error,
})

Implementation

factory SigningOutput({
  $core.List<$core.int>? encoded,
  $core.List<$core.int>? txId,
  $0.SigningError? error,
}) {
  final _result = create();
  if (encoded != null) {
    _result.encoded = encoded;
  }
  if (txId != null) {
    _result.txId = txId;
  }
  if (error != null) {
    _result.error = error;
  }
  return _result;
}