RawTransaction constructor
RawTransaction({})
Implementation
factory RawTransaction({
$core.List<$core.int>? hash,
$core.List<$core.int>? from,
$core.List<$core.int>? to,
$core.List<$core.int>? value,
$fixnum.Int64? nonce,
$fixnum.Int64? timestamp,
Data? data,
$core.int? chainId,
$core.List<$core.int>? gasPrice,
$core.List<$core.int>? gasLimit,
$core.int? alg,
$core.List<$core.int>? sign,
}) {
final result = create();
if (hash != null) result.hash = hash;
if (from != null) result.from = from;
if (to != null) result.to = to;
if (value != null) result.value = value;
if (nonce != null) result.nonce = nonce;
if (timestamp != null) result.timestamp = timestamp;
if (data != null) result.data = data;
if (chainId != null) result.chainId = chainId;
if (gasPrice != null) result.gasPrice = gasPrice;
if (gasLimit != null) result.gasLimit = gasLimit;
if (alg != null) result.alg = alg;
if (sign != null) result.sign = sign;
return result;
}