SigningInput constructor

SigningInput({
  1. List<int>? privateKey,
  2. TransactionBody? body,
})

Implementation

factory SigningInput({
  $core.List<$core.int>? privateKey,
  TransactionBody? body,
}) {
  final result = create();
  if (privateKey != null) result.privateKey = privateKey;
  if (body != null) result.body = body;
  return result;
}