SigningInput constructor
SigningInput({
- Transaction? transaction,
- List<
int> ? privateKey, - String? txId,
- String? rawJson,
Implementation
factory SigningInput({
Transaction? transaction,
$core.List<$core.int>? privateKey,
$core.String? txId,
$core.String? rawJson,
}) {
final result = create();
if (transaction != null) result.transaction = transaction;
if (privateKey != null) result.privateKey = privateKey;
if (txId != null) result.txId = txId;
if (rawJson != null) result.rawJson = rawJson;
return result;
}