stop method

Future<void> stop ()

Stops a running replicator.

When the replicator actually stops, the replicator will change its status’s activity level to .stopped and the replicator change notification will be notified accordingly.

Implementation

Future<void> stop() async {
  await _channel.invokeMethod('stopReplicator', this);
}