isExpandedChange property

  1. @Output()
Stream<bool> get isExpandedChange

Outputs an event when the menu is expanded.

Implementation

@Output()
Stream<bool> get isExpandedChange =>
    _expandAction.stream.map((_) => isExpanded);