SensorFusionBoschModule constructor

SensorFusionBoschModule(
  1. MethodChannel _channel
)

Implementation

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