stopAlert method

Future<bool> stopAlert()

Stop speed-alert monitoring.

Implementation

Future<bool> stopAlert() async {
  try {
    final result = await _method.invokeMethod<bool>('turnOffAlert');
    return result ?? false;
  } on PlatformException {
    rethrow;
  }
}