Initializing Dart VM... Dart VM is ready to use. To contact me, please send me a message to `danicoy@gmail.com`. For more details, please visit https://portfolio.dctech.dev or https://facefolio.dctech.dev. MacBook-Pro:~ monster555$ cat ./main.dart
void main() {
const websiteUrl = 'dctech.dev';
final me = PersonalInfo(
title: 'Senior Flutter Engineer',
contacInfo: ContactInfo(
email: Uri.parse('mailto:danicoy@gmail.com'),
linkedIn: Uri.https('www.linkedin.com', 'in/daniel-coyula/'),
github: Uri.https('github.com', 'monster555'),
portfolio: Uri.https('portfolio.dctech.dev'),
facefolio: Uri.https('facefolio.dctech.dev'),
website: Uri.https(websiteUrl),
resume: Uri.https(websiteUrl, 'downloads/viewDanielCoyulaCV().pdf'),
),
flutterInfo: FlutterInfo(
experienceYears: '5+',
projectsCount: 'Many!', // And counting... :)
// Apps published on various stores
apps: <Store>[
// iOS apps in the App Store
AppStore(
hasPublishedApps: true,
appsCount: 4,
),
// Android apps in the Play Store
PlayStore(
hasPublishedApps: true,
appsCount: 6,
),
],
architecturesAndTools: <String>[
'Flutter Web',
'BLoC',
'Clean Architecture',
'Firebase',
'MongoDB',
'Parse Server',
],
),
otherSkills: <String>[ // The most relevant
'UI / UX',
'MongoDB',
'JavaScript',
'NodeJS',
'HTML / CSS',
'TypeScript',
'Express'
],
projects: <Project>[
Project(
'DateChatAI',
role: 'Senior Flutter Engineer',
platforms: Platforms(ios: true, android: true),
url: Uri.https('datechatai.com'),
),
Project(
'My FaceFolio',
role: 'Senior Flutter Engineer',
platforms: Platforms(web: true),
url: Uri.https('facefolio.dctech.dev'),
),
Project(
'Baseball Cuba',
role: 'Senior Flutter Engineer',
platforms: Platforms(android: true, iOS: true),
),
Project(
'My Flutter Web Portfolio',
role: 'Senior Flutter Engineer',
platforms: Platforms(web: true),
url: Uri.https('portfolio.dctech.dev'),
),
Project(
'ProAnimals',
role: 'Senior Flutter Engineer',
platforms: Platforms(android: true, iOS: true),
),
Project(
'Cashews Finance',
role: 'Senior Flutter Engineer',
platforms: Platforms(android: true, iOS: true),
url: Uri.https(websiteUrl, 'cashews-finance'),
),
Project(
'Self-Service kiosk for Citroën',
role: 'Full Stack Software Engineer',
platforms: Platforms(android: true),
url: Uri.https(websiteUrl, 'citroen'),
),
Project(
'PedidoFacil',
role: 'Full Stack Software Engineer',
platforms: Platforms(android: true, iOS: true),
url: Uri.https(websiteUrl, 'pedidofacil'),
),
Project(
'EnvioFacil',
role: 'Full Stack Software Engineer',
platforms: Platforms(android: true, iOS: true),
url: Uri.https(websiteUrl, 'enviofacil'),
),
],
)..setStatus(
learningCoolStuff: true,
openToNewProjects: true,
);
}
MacBook-Pro:~ monster555$