setNotificationTitle method

Future<bool> setNotificationTitle(
  1. String title
)

Set notification title

title is the title to show in the VPN service notification. For example: "SafePro VPN" or "My VPN App" This should be called before starting the VPN.

Implementation

Future<bool> setNotificationTitle(String title) {
  return FlutterSingboxPlatform.instance.setNotificationTitle(title);
}