01 class SaulRamirez extends Developer {
02 final String name = 'Saul Ramirez Islas';
03 final String role = 'Full-Stack Developer Dart / JS';
04 final int experienceYears = 14;
05 final int startedCoding = 17;
06
07 final List<String> specializations = [
08 'Cross-platform mobile applications',
09 'Web applications',
10 'Flutter development',
11 'React Native',
12 ];
13
14 final List<String> experience = [
15 'RER Energy',
16 'Headspace Health',
17 'Slot Player Life',
18 ];
19
20 final List<String> strengths = [
21 'Agile environments',
22 'CI/CD',
23 'Team mentoring',
24 'Scalable solutions',
25 ];
26
27 @override
28 Widget build(BuildContext context) {
29 return Column(
30 children: [
31 Text(name,
32 style: Theme.of(context).textTheme.headline1,
33 ),
34 Text(
35 'Full-Stack Developer with $experienceYears years of experience—'
36 'started coding at age $startedCoding',
37 style: Theme.of(context).textTheme.subtitle1,
38 ),
39 ],
40 );
41 }
42 }