ExecuteWithSignatureInput constructor
ExecuteWithSignatureInput({})
Implementation
factory ExecuteWithSignatureInput({
$core.Iterable<Execution>? executions,
$core.List<$core.int>? privateKey,
$core.List<$core.int>? nonce,
EncodingHashParams? encodingHashParams,
}) {
final result = create();
if (executions != null) result.executions.addAll(executions);
if (privateKey != null) result.privateKey = privateKey;
if (nonce != null) result.nonce = nonce;
if (encodingHashParams != null)
result.encodingHashParams = encodingHashParams;
return result;
}