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