SensorFusionBoschModule constructor
SensorFusionBoschModule(
- MethodChannel _channel
Implementation
SensorFusionBoschModule(this._channel) {
Timer(
const Duration(seconds: 1),
() {
_channel.setMethodCallHandler((call) => handleMethodCall(call));
},
);
}