SigningInput constructor
SigningInput({})
Implementation
factory SigningInput({
$core.List<$core.int>? privateKey,
$core.String? to,
$fixnum.Int64? nonce,
$core.List<$core.int>? value,
$fixnum.Int64? gasLimit,
$core.List<$core.int>? gasFeeCap,
$core.List<$core.int>? gasPremium,
$core.List<$core.int>? params,
DerivationType? derivation,
$core.List<$core.int>? publicKey,
}) {
final $result = create();
if (privateKey != null) {
$result.privateKey = privateKey;
}
if (to != null) {
$result.to = to;
}
if (nonce != null) {
$result.nonce = nonce;
}
if (value != null) {
$result.value = value;
}
if (gasLimit != null) {
$result.gasLimit = gasLimit;
}
if (gasFeeCap != null) {
$result.gasFeeCap = gasFeeCap;
}
if (gasPremium != null) {
$result.gasPremium = gasPremium;
}
if (params != null) {
$result.params = params;
}
if (derivation != null) {
$result.derivation = derivation;
}
if (publicKey != null) {
$result.publicKey = publicKey;
}
return $result;
}