This inspection reports usages of
boxed
Range.start
and
Range.endInclusive
properties. These properties can be replaced with
unboxed
first
and
last
properties. Example:
range.start
can be replaced with
range.first
.