mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-02-02 19:26:27 +00:00
change type string to bool in Wakelock class
This commit is contained in:
parent
860e904816
commit
67d0fe67ea
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ class WakeLock {
|
|||
|
||||
Future<void> enableWake() async {
|
||||
try {
|
||||
await _utils.invokeMethod<String>('enableWakeScreen');
|
||||
await _utils.invokeMethod<bool>('enableWakeScreen');
|
||||
} on PlatformException catch (_) {
|
||||
print('Failed enabling screen wakelock');
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ class WakeLock {
|
|||
|
||||
Future<void> disableWake() async {
|
||||
try {
|
||||
await _utils.invokeMethod<String>('disableWakeScreen');
|
||||
await _utils.invokeMethod<bool>('disableWakeScreen');
|
||||
} on PlatformException catch (_) {
|
||||
print('Failed enabling screen wakelock');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue