class Pabllo {
final String name = "Pabllo Oliveira Martins";
final String position = "Desenvolvedor Júnior";
final List<String> languages = ["Flutter", "Dart", "Python", "SQL"];
String introduce() {
return "Meu nome é $name.\n"
"Sou $position,\n"
"e atualmente estou focado em: ${languages.join(', ')}.";
}
}
void main() {
final pabllo = Pabllo();
print(pabllo.introduce());
}
🧑💻
Focusing
Popular repositories Loading
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.