isSensorAvailable method
Determines whether sensor is available.
Implementation
Future<bool> isSensorAvailable(SensorType sensorType) async {
final available = await _methodChannel.invokeMethod('isSensorAvailable', _typesList[sensorType.index]);
return available;
}