SigningInput constructor
SigningInput({
- OperationList? operationList,
- List<
int> ? encodedOperations, - List<
int> ? privateKey,
Implementation
factory SigningInput({
OperationList? operationList,
$core.List<$core.int>? encodedOperations,
$core.List<$core.int>? privateKey,
}) {
final _result = create();
if (operationList != null) {
_result.operationList = operationList;
}
if (encodedOperations != null) {
_result.encodedOperations = encodedOperations;
}
if (privateKey != null) {
_result.privateKey = privateKey;
}
return _result;
}