setNotificationDescription method
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,
);
}