isTracking static method
Check if location tracking is active
Implementation
static Future<bool> isTracking() async {
try {
final result = await _methodChannel.invokeMethod('isTracking');
return result == true;
} on PlatformException catch (e) {
print('Error checking tracking status: ${e.message}');
return false;
}
}