clearServiceNotification method

  1. @override
Future<bool?> clearServiceNotification()
override

Implementation

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