SigningOutput constructor

SigningOutput({
  1. String? encoded,
  2. String? unsignedTx,
})

Implementation

factory SigningOutput({
  $core.String? encoded,
  $core.String? unsignedTx,
}) {
  final _result = create();
  if (encoded != null) {
    _result.encoded = encoded;
  }
  if (unsignedTx != null) {
    _result.unsignedTx = unsignedTx;
  }
  return _result;
}