getNotificationDescription method
Get notification description
Implementation
@override
Future<String> getNotificationDescription() async {
final description = await methodChannel.invokeMethod<String>(
'getNotificationDescription',
);
return description ?? 'Connected';
}