gyroscopeEventStream method

Stream<GyroscopeEvent> gyroscopeEventStream({
  1. Duration samplingPeriod = SensorInterval.normalInterval,
})

Returns a broadcast stream of events from the device gyroscope at the given sampling frequency.

Implementation

Stream<GyroscopeEvent> gyroscopeEventStream({
  Duration samplingPeriod = SensorInterval.normalInterval,
}) {
  throw UnimplementedError('gyroscopeEvents has not been implemented.');
}