pauseBlockApps method

Future<bool> pauseBlockApps({
  1. required Duration pauseDuration,
  2. String? notificationTitle,
  3. String? notificationText,
  4. bool showNotification = true,
})

Temporarily pause blocking apps for a specified duration After the pause duration expires, blocking will automatically resume

Implementation

Future<bool> pauseBlockApps({
  required Duration pauseDuration,
  String? notificationTitle,
  String? notificationText,
  bool showNotification = true,
}) =>
    throw UnimplementedError('pauseBlockApps() has not been implemented.');