configureHandler property
void Function()?
get
configureHandler
If this method is present, a configuration gear will be present in the UI, and this method will be invoked when it's clicked. When called, you can take other editor actions, such as showing a quick pick or opening a configuration file.
Implementation
void Function()? get configureHandler => () => _i5.callMethod(
_i5.getProperty(
this,
'configureHandler',
),
r'call',
[this],
);
set
configureHandler
(void value()?)
Implementation
set configureHandler(void Function()? value) {
_i5.setProperty(
this,
'configureHandler',
value == null ? _i6.undefined : _i5.allowInterop(value),
);
}