openLocationSettings method
Implementation
@override
Future<bool> openLocationSettings({
DeviceGeolocationSettingsCallback? callback,
}) async {
final opened = await methodChannel.invokeMethod<bool>(
'openLocationSettings',
);
return opened ?? false;
}