stopGyroscope method

Future<void> stopGyroscope()

ジャイロセンサーのデータ収集を停止する

Implementation

Future<void> stopGyroscope() async {
  if (_gyroscopeStreamSubscription == null) {
    return;
  }
  await _gyroscopeStreamSubscription?.cancel();
}