brackets property
List<CharacterPair> ?
get
brackets
The language's brackets. This configuration implicitly affects pressing Enter around these brackets.
Implementation
_i2.List<_i3.CharacterPair>? get brackets => (_i5.getProperty(
this,
'brackets',
) as _i2.List?)
?.cast();
set
brackets
(List<CharacterPair> ? value)
Implementation
set brackets(_i2.List<_i3.CharacterPair>? value) {
_i5.setProperty(
this,
'brackets',
value
?.map((i) => [
i.$1,
i.$2,
])
.toList() ??
_i6.undefined,
);
}