import 'package:sweet_chat_app/models/im_message.dart'; class MessageStore { static final Map> _data = {}; static void add(ImMessage msg) { _data.putIfAbsent(msg.to, () => []).add(msg); _data.putIfAbsent(msg.from, () => []).add(msg); } static List messagesFor(String userId) => _data[userId] ?? []; }