factory EventResult.fromJson(Map<String, dynamic> json) { return EventResult( json['result'] ?? false, json['message'], // 'message' can be null ); }