disconnectSenseH method

Future<bool> disconnectSenseH()

Disconnects the SenseH Device

Implementation

Future<bool> disconnectSenseH() async {
  final isDisconnected = await deviceController.disconnect();
  return isDisconnected;
}