Builds a URI for X (Twitter).
static Uri buildXUri(String? usernameOrId) { if (usernameOrId == null || usernameOrId.isEmpty) return Uri(); return Uri.parse('https://x.com/$usernameOrId'); }