SigningOutput constructor
SigningOutput({
- List<
int> ? encoded, - List<
int> ? txId, - 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;
}