onAvailableFeaturesUpdated property

Stream get onAvailableFeaturesUpdated

A stream that emits events when available features are updated.

This stream listens for events indicating that the available features have been updated. Each event contains information about the updated features. Use this stream to update your UI or perform actions upon feature updates.

Usage example:

Mirrorfly.onAvailableFeaturesUpdated.listen((featuresData) {
  // Handle the event when available features are updated
  print("Available features updated: $featuresData");
});

Implementation

static Stream<dynamic> get onAvailableFeaturesUpdated =>
    FlyChatFlutterPlatform.instance.onAvailableFeaturesUpdated;