humanhash 1.0.0 copy "humanhash: ^1.0.0" to clipboard
humanhash: ^1.0.0 copied to clipboard

outdatedDart 1 only

A human-readable unique ID generator

example/main.dart

import 'package:humanhash/humanhash.dart' as hhash;

main() {
  for (var i = 0; i < 10; i++) {
    var name = hhash.getRandomName(true);
    print(name);
  }
}