dispose method

Future<void> dispose()

Stops all cameras and disconnects from the hardware.

Implementation

Future<void> dispose() async {
  parent.stopAll();
  await parent.dispose();
  await videoServer.dispose();
}