0 purchases
yorubanames
yoruba-names #
Get a random yoruba name
Usage in #
See the example/main.dart file
import 'package:yorubanames/yorubanames.dart';
copied to clipboard
void main(List<String> args) {
final yGenerator generator = new yGenerator();
copied to clipboard
Random names
List names= generator.randomYname(4);
names.forEach((f){
print(f);
});
copied to clipboard
Name should contain a certain charater
List names2= generator.randomYnameByLetter('e',4);
names2.forEach((f){
print(f);
});
}
```
copied to clipboard
Inspired from lagosnomad by Olakanmi Oluwole
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.