isUnicode property

  1. @override
bool get isUnicode
inherited

Implementation

@override
bool get isUnicode {
  if (negate) {
    return true;
  }

  final list = getCharList();
  return list.any((e) => e > 0xffff);
}