void main(List<String> args) {
if (args.isNotEmpty && args.first == 'profile') {
final perfil = Profile(
nome: 'Túlio Garcia Diniz',
area: 'Full Stack',
trabalho: 'DinizSoft',
local: 'Dracena/SP',
linguagens: [
'Dart',
'JS/TS',
'C',
'C#',
'C++',
'Pascal (Delphi)',
'PHP',
],
);
print('$perfil');
} else {
print('Argument is required.');
}
}
class Profile {
final String nome;
final String area;
final String trabalho;
final String local;
final List<String> linguagens;
Profile({
required this.nome,
required this.area,
required this.trabalho,
required this.local,
required this.linguagens,
});
@override
String toString() => '(nome: $nome, area: $area, trabalho: $trabalho, '
'local: $local, linguagens: $linguagens)';
}
Absolutely crazy full stack dev.
- Dracena/SP
-
22:23
(UTC -03:00) - https://www.dinizsoft.com.br/site/
Popular repositories Loading
-
readme-template
readme-template PublicForked from iuricode/readme-template
📜 Modelos readme para qualquer pessoa copiar e usar em seu GitHub.
-
padroes-de-commits
padroes-de-commits PublicForked from iuricode/padroes-de-commits
📄 Padrão de commits para repositórios.
Shell
-
-
flutter_mobx_extension
flutter_mobx_extension PublicForked from Flutterando/flutter_mobx_extension
TypeScript
-
MS-DOS
MS-DOS PublicForked from microsoft/MS-DOS
The original sources of MS-DOS 1.25, 2.0, and 4.0 for reference purposes
Assembly
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.