<itemvalue="A 64-bit integer is represented internally as three non-negative integers, storing the 22 low, 22 middle, and 20 high bits of the 64-bit value. _l (low) and _m (middle) are in the range [0, 2^22 - 1] and _h (high) is in the range [0, 2^20 - 1]. The values being assigned to _l, _m and _h in initialization are masked to force them into the above ranges. Sometimes we know that the value is a small non-negative integer but the dart2js compiler can't infer that, so a few of the masking operations are not needed for correctness but are helpful for dart2js code quality."/>
<itemvalue="An immutable 64-bit signed integer, in the range [-2^63, 2^63 - 1]. Arithmetic operations may overflow in order to maintain this range."/>
<itemvalue="Synchronously writes a single string to the file using the given [Encoding]. Throws a [FileSystemException] if the operation fails."/>
@ -61,7 +62,6 @@
<itemvalue="Sweep&scrub"/>
<itemvalue="Suction"/>
<itemvalue="subtract"/>
<itemvalue="TD: The native flutter tooltip uses verticalOffset to space the tooltip from the child. But we'll likely need just offset, since it's 4 way directional this.verticalOffset = 24.0,"/>