setNotificationDescription method

Future<bool> setNotificationDescription(
  1. String description
)

Set notification description

description is the description/content text to show in the notification. For example: "Connected" or "VPN is active" This should be called before starting the VPN.

Implementation

Future<bool> setNotificationDescription(String description) {
  return FlutterSingboxPlatform.instance.setNotificationDescription(
    description,
  );
}