onRestoreSuccess property

Stream get onRestoreSuccess

A stream that emits events when a restore operation is successful.

This stream listens for restore success events. Use this to handle actions or notifications after a successful restore operation.

Usage example:

Mirrorfly.onRestoreSuccess.listen((data) {
  // Handle the event for a successful restore
  print("Restore successful: $data");
});

Implementation

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