-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexternal_links.dart
More file actions
26 lines (24 loc) · 1.39 KB
/
external_links.dart
File metadata and controls
26 lines (24 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
enum ExternalLink {
youTubePlaylist('https://www.youtube.com/playlist?list=PL4dBIh1xps-HIYvaEIbLWHZqt_WGBfpx3'),
youTubeVibeCoding('https://www.youtube.com/playlist?list=PL4dBIh1xps-GLrzqijiTRuzdtxP3bfqsQ'),
youTubeAgenticQA('https://www.youtube.com/live/XRuKywXD7zM?si=KHjiSKayFwuFz7GH'),
youTubeFlutterCommunity('https://www.youtube.com/@FlutterCommunity'),
youTubeJhinLeeMCPHumpdayQA('https://www.youtube.com/live/1U-zd6MYrOA?si=HdWVE-H8zDNOL0Sx&t=1794'),
geminiFunctionCallingDocs(
'https://ai.google.dev/gemini-api/docs/function-calling?example=meeting'),
forumCategory('https://forum.itsallwidgets.com/c/ai/46'),
forumChat('https://forum.itsallwidgets.com/chat/c/fc-ai-circle/40'),
surveyCommunity('https://forms.gle/JrC11pxRz6TLyB2L9'),
surveyContributors('https://forms.gle/AcoThJ6E9yxxe8hdA'),
socialBlueSky('https://bsky.app/profile/fluttercommunity.dev'),
socialTwitterX('https://x.com/FlutterComm'),
socialMastodon('https://fluttercommunity.social/@FlutterComm'),
socialGitHub('https://github.com/fluttercommunity/fc_ai_circle'),
socialMedium('https://medium.com/flutter-community'),
sessionizeCallForSpeakers('https://sessionize.com/fcaic/'),
buildWithAI2026(
'https://gdg.community.dev/events/details/google-gdg-nyc-presents-build-with-ai-2026-ai-flutter-club-week-1-introduction-to-flutter-amp-ai/'),
;
const ExternalLink(this.url);
final String url;
}