displayLastReceivedNotification method
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}');
}
}