openAppSettings method
Opens the app settings screen. Returns true if the call was successful.
Implementation
@override
Future<bool> openAppSettings() async {
final result = await methodChannel.invokeMethod<bool>('openAppSettings');
return result ?? false;
}