hideOutline method

  1. @protected
void hideOutline()

Implementation

@protected
void hideOutline() {
  if (_element.style.outline != 'none') {
    _domService.scheduleWrite(() {
      _element.style.outline = 'none';
    });
  }
}