Created with <3 with dartpad.dev.
Created
December 23, 2022 09:16
-
-
Save treva-123mutebi/5f695a4dbf612fe5d2bfc505c778b603 to your computer and use it in GitHub Desktop.
malevolent-waterfall-0878
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:math'; | |
| String generateBrandName() { | |
| final rng = Random(); | |
| final name = 'JeanAkulloCoprise'; | |
| final brandName = name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)]; | |
| return brandName.substring(0, 5); | |
| } | |
| void main() { | |
| final brandName = generateBrandName(); | |
| print('Welcome to ${brandName} Design Studio, where luxury meets creativity.'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment