gasPrice property

  1. @TagNumber.new(4)
List<int> get gasPrice

Gas price (uint256, serialized big endian) Relevant for legacy transactions only (disregarded for enveloped/EIP1559)

Implementation

@$pb.TagNumber(4)
$core.List<$core.int> get gasPrice => $_getN(3);
  1. @TagNumber.new(4)
set gasPrice (List<int> v)

Implementation

@$pb.TagNumber(4)
set gasPrice($core.List<$core.int> v) {
  $_setBytes(3, v);
}