getNotificationTitle method

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

Implementation

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