start abstract method

FutureOr<void> start({
  1. bool reset = false,
})

Starts this replicator with an option to reset the local checkpoint of the replicator.

When the local checkpoint is reset, the replicator will sync all changes since the beginning of time from the remote database.

The method returns immediately; the replicator runs asynchronously and will report its progress through the changes stream.

Implementation

FutureOr<void> start({bool reset = false});