showCompleteNotification method
Future<void>
showCompleteNotification(
{ - int notificationId = 1,
- String channelId = 'channel_id',
- String title = 'Completed',
- String content = 'Done',
})
Implementation
Future<void> showCompleteNotification({
int notificationId = 1,
String channelId = 'channel_id',
String title = 'Completed',
String content = 'Done',
}) async {
await _channel.invokeMethod('$_name/showCompleteNotification', {
'notificationId': notificationId,
'channelId': channelId,
'title': title,
'content': content,
});
}