A Software developer specializing in mobile/web applications with Flutter and React.
class GitHubProfile {
final String username;
final String bio;
final List<String> skills;
GitHubProfile({
required this.username,
required this.bio,
required this.skills,
});
String aboutMe() {
final skillsList = skills.map((skill) => '- $skill').join('\n');
return '''
# Hello, World! ๐
I'm @$username, a passionate Dart developer.
## About Me
- ๐ผ $bio
## Skills
$skillsList
- ๐ฑ Iโm currently learning **Kotlin**
- ๐ฌ Ask me about **dart(flutter)**
''';
}
}
void main() {
final myProfile = GitHubProfile(
username: 'tomari99',
bio: 'A Flutter Dev | Dart & Flutter Enthusiast',
skills: ['Dart', 'Flutter', 'Firebase', 'MongoDB', "Git", "ReactJS", "TailwindCSS"],
);
final aboutMe = myProfile.aboutMe();
print(aboutMe);
}
- ๐ซ How to reach me thetmyoekhaing.npi@gmail.com