getNotificationDescription method

  1. @override
Future<String> getNotificationDescription()
override

Get notification description

Implementation

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