checkSensors property

Future<int?> get checkSensors

method channel checkSensors

Implementation

static Future<int?> get checkSensors async {
  final int? haveSensor = await _channel.invokeMethod('getSensors');
  return haveSensor;
}