SigningInput constructor
SigningInput({})
Implementation
factory SigningInput({
$core.String? fromAddress,
$core.String? toAddress,
$core.List<$core.int>? value,
$core.List<$core.int>? stepLimit,
$fixnum.Int64? timestamp,
$core.List<$core.int>? nonce,
$core.List<$core.int>? networkId,
$core.List<$core.int>? privateKey,
}) {
final $result = create();
if (fromAddress != null) {
$result.fromAddress = fromAddress;
}
if (toAddress != null) {
$result.toAddress = toAddress;
}
if (value != null) {
$result.value = value;
}
if (stepLimit != null) {
$result.stepLimit = stepLimit;
}
if (timestamp != null) {
$result.timestamp = timestamp;
}
if (nonce != null) {
$result.nonce = nonce;
}
if (networkId != null) {
$result.networkId = networkId;
}
if (privateKey != null) {
$result.privateKey = privateKey;
}
return $result;
}