diff --git a/packages/sensors_plus/sensors_plus/lib/sensors_plus.dart b/packages/sensors_plus/sensors_plus/lib/sensors_plus.dart index 5739bb8f8b..c040b2fb14 100644 --- a/packages/sensors_plus/sensors_plus/lib/sensors_plus.dart +++ b/packages/sensors_plus/sensors_plus/lib/sensors_plus.dart @@ -35,7 +35,6 @@ Stream get magnetometerEvents { /// Returns a broadcast stream of events from the device accelerometer at the /// given sampling frequency. -@override Stream accelerometerEventStream({ Duration samplingPeriod = SensorInterval.normalInterval, }) { @@ -44,7 +43,6 @@ Stream accelerometerEventStream({ /// Returns a broadcast stream of events from the device gyroscope at the /// given sampling frequency. -@override Stream gyroscopeEventStream({ Duration samplingPeriod = SensorInterval.normalInterval, }) { @@ -53,7 +51,6 @@ Stream gyroscopeEventStream({ /// Returns a broadcast stream of events from the device accelerometer with /// gravity removed at the given sampling frequency. -@override Stream userAccelerometerEventStream({ Duration samplingPeriod = SensorInterval.normalInterval, }) { @@ -62,7 +59,6 @@ Stream userAccelerometerEventStream({ /// Returns a broadcast stream of events from the device magnetometer at the /// given sampling frequency. -@override Stream magnetometerEventStream({ Duration samplingPeriod = SensorInterval.normalInterval, }) {