onOutline property

Reports the Flutter outline associated with a single file.

This notification is not subscribed to by default. Clients can subscribe by including the value "OUTLINE" in the list of services passed in an flutter.setSubscriptions request.

Implementation

Stream<FlutterOutlineEvent> get onOutline {
  return _listen('flutter.outline', FlutterOutlineEvent.parse);
}