stopGyroscope method
ジャイロセンサーのデータ収集を停止する
Implementation
Future<void> stopGyroscope() async {
if (_gyroscopeStreamSubscription == null) {
return;
}
await _gyroscopeStreamSubscription?.cancel();
}
ジャイロセンサーのデータ収集を停止する
Future<void> stopGyroscope() async {
if (_gyroscopeStreamSubscription == null) {
return;
}
await _gyroscopeStreamSubscription?.cancel();
}