pauseDisplayingSurveys method

  1. @override
Future<void> pauseDisplayingSurveys()
override

Implementation

@override
Future<void> pauseDisplayingSurveys() async {
  try {
    await methodChannel.invokeMethod<void>('pauseDisplayingSurveys');
  } catch (e) {
    debugPrint("Failed to pause displaying surveys: $e");
  }
}