getNotificationTitle method

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

Get notification title

Implementation

@override
Future<String> getNotificationTitle() async {
  final title = await methodChannel.invokeMethod<String>(
    'getNotificationTitle',
  );
  return title ?? 'VPN Service';
}