SigningInput constructor
SigningInput({})
Implementation
factory SigningInput({
$core.String? chainId,
$core.String? toAddress,
$core.List<$core.int>? thetaAmount,
$core.List<$core.int>? tfuelAmount,
$fixnum.Int64? sequence,
$core.List<$core.int>? fee,
$core.List<$core.int>? privateKey,
$core.List<$core.int>? publicKey,
}) {
final result = create();
if (chainId != null) result.chainId = chainId;
if (toAddress != null) result.toAddress = toAddress;
if (thetaAmount != null) result.thetaAmount = thetaAmount;
if (tfuelAmount != null) result.tfuelAmount = tfuelAmount;
if (sequence != null) result.sequence = sequence;
if (fee != null) result.fee = fee;
if (privateKey != null) result.privateKey = privateKey;
if (publicKey != null) result.publicKey = publicKey;
return result;
}