getUseCount method

Future<bool?> getUseCount()

Get the use count from the connected device. The following states can be emitted on the statusStream in response:

Note: Is not supported on all BACtrack devices. iOS Note: Not available on iOS.

Implementation

Future<bool?> getUseCount() async {
  return await _channel.invokeMethod(getUseCountMethod);
}