openLocationSettings method
Opens the device's location settings page.
Implementation
@override
Future<bool> openLocationSettings() async {
final result =
await methodChannel.invokeMethod<bool>('openLocationSettings');
return result ?? false;
}