var username = UsernameGen.random(); // sharpened-whiskey87
//OR
final username = UsernameGen().generate(); // sharpened-whiskey87
However UsernameGen doesn't have a static (or non-static) random() method. I do see that random is defined for the UsernameGenImpl class, but as far as I can tell that class isn't used.
The README reads:
However
UsernameGen
doesn't have a static (or non-static)random()
method. I do see thatrandom
is defined for theUsernameGenImpl
class, but as far as I can tell that class isn't used.