@@ -21,74 +21,104 @@ class UserCredentials {
2121
2222 // region Individual user credentials
2323
24- static final luke = UserCredentials (
24+ static final sahil = UserCredentials (
2525 user: const User (
26- id: 'luke_skywalker' ,
27- name: 'Luke Skywalker' ,
28- image:
29- 'https://vignette.wikia.nocookie.net/starwars/images/2/20/LukeTLJ.jpg' ,
26+ id: 'sahil' ,
27+ name: 'Sahil Kumar' ,
28+ image: 'https://avatars.githubusercontent.com/u/25670178' ,
3029 ),
31- token: _tokenForUser ('luke_skywalker' ),
30+ token: _tokenForUser ('sahil' ),
31+ );
32+
33+ static final rene = UserCredentials (
34+ user: const User (
35+ id: 'rene' ,
36+ name: 'Rene Floor' ,
37+ image: 'https://avatars.githubusercontent.com/u/15101411' ,
38+ ),
39+ token: _tokenForUser ('rene' ),
40+ );
41+
42+ static final maciej = UserCredentials (
43+ user: const User (
44+ id: 'maciej' ,
45+ name: 'Maciej Brażewicz' ,
46+ image: 'https://avatars.githubusercontent.com/u/5622717' ,
47+ ),
48+ token: _tokenForUser ('maciej' ),
3249 );
3350
3451 static final martin = UserCredentials (
3552 user: const User (
3653 id: 'martin' ,
37- name: 'Martin' ,
38- image:
39- 'https://getstream.io/static/2796a305dd07651fcceb4721a94f4505/802d2/martin-mitrevski.webp' ,
54+ name: 'Martin Mitrevski' ,
55+ image: 'https://avatars.githubusercontent.com/u/2971717' ,
4056 ),
4157 token: _tokenForUser ('martin' ),
4258 );
4359
4460 static final tommaso = UserCredentials (
4561 user: const User (
4662 id: 'tommaso' ,
47- name: 'Tommaso' ,
48- image:
49- 'https://getstream.io/static/712bb5c0bd5ed8d3fa6e5842f6cfbeed/c59de/tommaso.webp' ,
63+ name: 'Tommaso Barbugli' ,
64+ image: 'https://avatars.githubusercontent.com/u/88735' ,
5065 ),
5166 token: _tokenForUser ('tommaso' ),
5267 );
5368
5469 static final thierry = UserCredentials (
5570 user: const User (
5671 id: 'thierry' ,
57- name: 'Thierry' ,
58- image:
59- 'https://getstream.io/static/237f45f28690696ad8fff92726f45106/c59de/thierry.webp' ,
72+ name: 'Thierry Schellenbach' ,
73+ image: 'https://avatars.githubusercontent.com/u/265409' ,
6074 ),
6175 token: _tokenForUser ('thierry' ),
6276 );
6377
6478 static final marcelo = UserCredentials (
6579 user: const User (
6680 id: 'marcelo' ,
67- name: 'Marcelo' ,
68- image:
69- 'https://getstream.io/static/aaf5fb17dcfd0a3dd885f62bd21b325a/802d2/marcelo-pires.webp' ,
81+ name: 'Marcelo Pires' ,
82+ image: 'https://avatars.githubusercontent.com/u/916501' ,
7083 ),
7184 token: _tokenForUser ('marcelo' ),
7285 );
7386
7487 static final kanat = UserCredentials (
75- user: const User (id: 'kanat' , name: 'Kanat' ),
88+ user: const User (
89+ id: 'kanat' ,
90+ name: 'Kanat Kiialbaev' ,
91+ image: 'https://avatars.githubusercontent.com/u/1286516' ,
92+ ),
7693 token: _tokenForUser ('kanat' ),
7794 );
7895
7996 static final toomas = UserCredentials (
80- user: const User (id: 'toomas' , name: 'Toomas' ),
97+ user: const User (
98+ id: 'toomas' ,
99+ name: 'Toomas Vahter' ,
100+ image: 'https://avatars.githubusercontent.com/u/1469907' ,
101+ ),
81102 token: _tokenForUser ('toomas' ),
82103 );
83104
84105 // endregion
85106
86107 // Built-in list sorted by name
87108 static List <UserCredentials > get builtIn {
88- final users = [luke, martin, tommaso, thierry, marcelo, kanat, toomas];
89- return users.sorted (
90- (a, b) => a.user.name.toLowerCase ().compareTo (b.user.name.toLowerCase ()),
91- );
109+ final users = [
110+ sahil,
111+ rene,
112+ maciej,
113+ martin,
114+ tommaso,
115+ thierry,
116+ marcelo,
117+ kanat,
118+ toomas,
119+ ];
120+
121+ return users;
92122 }
93123
94124 // Helper method to get credentials by ID
0 commit comments