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;
}