addBot method
void
addBot(
- V2NIMUserAIBot bot
Implementation
void addBot(V2NIMUserAIBot bot) {
final index = bots.indexWhere((item) => item.accid == bot.accid);
if (index >= 0) {
bots[index] = bot;
} else {
bots.add(bot);
}
sortUserAIBotsByCreateTimeDesc(bots);
notifyListeners();
}