m3_lightmeter/lib/data/caffeine_service.dart

17 lines
569 B
Dart

import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
class CaffeineService {
@visibleForTesting
static const caffeineMethodChannel = MethodChannel("com.vodemn.lightmeter.CaffeinePlatformChannel.MethodChannel");
const CaffeineService();
Future<bool> isKeepScreenOn() async {
return caffeineMethodChannel.invokeMethod<bool>("isKeepScreenOn").then((value) => value!);
}
Future<bool> keepScreenOn(bool keep) async {
return caffeineMethodChannel.invokeMethod<bool>("setKeepScreenOn", keep).then((value) => value!);
}
}