isWordLike property
bool?
get
isWordLike
A boolean value only if granularity is "word"; otherwise, undefined. If granularity is "word", then isWordLike is true when the segment is word-like (i.e., consists of letters/numbers/ideographs/etc.); otherwise, false.
Implementation
_i2.bool? get isWordLike => _i5.getProperty(
this,
'isWordLike',
);
set
isWordLike
(bool? value)
Implementation
set isWordLike(_i2.bool? value) {
_i5.setProperty(
this,
'isWordLike',
value ?? _i4.undefined,
);
}