void handlePluginEvent( Map evt, String peer, Function(Map e) handleMsgBox, ) { if (evt['content']?['c'] == null) return; final t = evt['content']?['t']; if (t == 'MsgBox') { handleMsgBox(evt['content']?['c']); } }