setNotification method

  1. @override
Future<void> setNotification(
  1. String title,
  2. String body,
  3. String icon
)
override

Implementation

@override
Future<void> setNotification(String title, String body, String icon) async {
  return methodChannel.invokeMethod('setNotification', {
    'title': title,
    'body': body,
    'icon': icon,
  });
}