isKeptOn method

  1. @override
Future<bool> isKeptOn()
override

Implementation

@override
Future<bool> isKeptOn() async {
  final bool? result = await methodChannel.invokeMethod<bool>('isKeptOn');
  return result ?? false;
}