generateEventId static method
生成事件ID
Implementation
static String generateEventId() {
final timestamp = DateTime.now().millisecondsSinceEpoch;
final random = (timestamp % 10000).toString().padLeft(4, '0');
return 'event_${timestamp}_$random';
}