displayLastReceivedNotification method

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

Implementation

@override
Future<void> displayLastReceivedNotification() async {
  try {
    await methodChannel.invokeMethod('displayLastReceivedNotification');
  }
  on PlatformException catch(exception) {
    log.severe('Exception when displaying last received notification: ${exception.message}');
  }
}