SigningInput constructor
SigningInput({})
Implementation
factory SigningInput({
$core.String? fromAddress,
$core.List<$core.int>? chainId,
$core.List<$core.int>? nonce,
$core.List<$core.int>? gasPrice,
$core.List<$core.int>? gasLimit,
$core.String? toAddress,
$core.List<$core.int>? amount,
$core.List<$core.int>? timestamp,
$core.String? payload,
$core.List<$core.int>? privateKey,
}) {
final $result = create();
if (fromAddress != null) {
$result.fromAddress = fromAddress;
}
if (chainId != null) {
$result.chainId = chainId;
}
if (nonce != null) {
$result.nonce = nonce;
}
if (gasPrice != null) {
$result.gasPrice = gasPrice;
}
if (gasLimit != null) {
$result.gasLimit = gasLimit;
}
if (toAddress != null) {
$result.toAddress = toAddress;
}
if (amount != null) {
$result.amount = amount;
}
if (timestamp != null) {
$result.timestamp = timestamp;
}
if (payload != null) {
$result.payload = payload;
}
if (privateKey != null) {
$result.privateKey = privateKey;
}
return $result;
}