startCountdown method

Future<bool?> startCountdown()

Start the process of collecting a BAC reading. The following states can be emitted on the statusStream in response:

Implementation

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