notIn property

List<SyntaxTokenType>? get notIn

A set of tokens where the pair should not be auto closed.

Implementation

_i2.List<_i3.SyntaxTokenType>? get notIn => (_i5.getProperty(
      this,
      'notIn',
    ) as _i2.List?)
        ?.cast()
        .map((i) => _i3.SyntaxTokenType.values.byName(i))
        .toList();
set notIn (List<SyntaxTokenType>? value)

Implementation

set notIn(_i2.List<_i3.SyntaxTokenType>? value) {
  _i5.setProperty(
    this,
    'notIn',
    value?.map((i) => i.name).toList() ?? _i6.undefined,
  );
}