getBackgroundLocationIndicatorVisible method
override
On iOS devices this checks if application's background location indicator is visible. Returns true if background location indicator is visible, false otherwise.
On Android devices this is not supported and false is returned.
Implementation
bool getBackgroundLocationIndicatorVisible() {
if (Platform.isIOS) {
return _location.getBackgroundLocationIndicatorVisible();
}
return false;
}