showNotificationWithActions method
Show a notification with custom actions.
Each action is a map with 'title' and 'route' keys. Returns the notification ID.
Implementation
Future<int> showNotificationWithActions({
required String title,
required String message,
required List<Map<String, String>> actions,
String? channelId,
int? priority,
bool? autoCancel,
String? targetScreen,
Map<String, dynamic>? extraData,
}) {
throw UnimplementedError(
'showNotificationWithActions() has not been implemented.',
);
}