onRestoreFailure property

Stream get onRestoreFailure

A stream that emits events when a restore operation fails.

This stream listens for restore failure events. Use this to handle errors or retries for failed restore operations.

Usage example:

Mirrorfly.onRestoreFailure.listen((error) {
  // Handle the event for a failed restore
  print("Restore failed: $error");
});

Implementation

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