isPowerSaveModeEnabled method
Returns true if the Power save mode is enabled,
false otherwise. Always returns false on iOS.
Implementation
Future<bool> isPowerSaveModeEnabled() async {
if (defaultTargetPlatform != TargetPlatform.android) return false;
return await _channel.invokeMethod('isPowerSaveModeEnabled');
}