highWaterMark property
num
get
highWaterMark
Creates a new ByteLengthQueuingStrategy with the provided high water mark.
Note that the provided high water mark will not be validated ahead of time. Instead, if it is negative, NaN, or not a number, the resulting ByteLengthQueuingStrategy will cause the corresponding stream constructor to throw.
Implementation
_i2.num get highWaterMark => _i4.getProperty(
this,
'highWaterMark',
);
set
highWaterMark
(num value)
Implementation
set highWaterMark(_i2.num value) {
_i4.setProperty(
this,
'highWaterMark',
value,
);
}