ClientResetCallback typedef
ClientResetCallback =
FutureOr<void> Function(ClientResetError clientResetError)
The signature of a callback that will be triggered when a Client Reset error happens in a synchronized Realm
.
The clientResetError
holds useful data to be used when trying to manually recover from a client reset.
Implementation
typedef ClientResetCallback = FutureOr<void> Function(ClientResetError clientResetError);