start abstract method

  1. @override
Future<void> start({
  1. bool reset = false,
})
override

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

@override
Future<void> start({bool reset = false});