stopAll method
Stops all the cameras managed by this class.
Implementation
void stopAll() {
final command = VideoCommand(details: CameraDetails(status: CameraStatus.CAMERA_DISABLED));
for (final name in CameraName.values) {
if (name == CameraName.CAMERA_NAME_UNDEFINED) continue;
parent.sendToChild(data: command, id: name);
}
}