setForegroundNotificationInfo method

Future<void> setForegroundNotificationInfo({
  1. required String title,
  2. required String content,
})

Implementation

Future<void> setForegroundNotificationInfo({
  required String title,
  required String content,
}) async {
  await _channel.invokeMethod("setNotificationInfo", {
    "title": title,
    "content": content,
  });
}