stop method
void
stop()
Removes all movement effects or behaviors from the viewfinder.
Implementation
void stop() {
viewfinder.children.toList().forEach((child) {
if (child is FollowBehavior || child is MoveEffect) {
child.removeFromParent();
}
});
}