Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
teamhydra_id_generator/example/idgen_dart_example.dart
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
12 lines (10 sloc)
427 Bytes
This file contains 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 the package | |
import 'package:teamhydra_id_generator/teamhydra_idgen.dart'; | |
void main() async { | |
IDGen idgen = IDGen(username: 'your_username', token: 'your_token'); | |
// A more complex example can be generating a new IDs with a specific alphabet | |
// and length | |
IDGenResponse newID = await idgen.generateNanoID( | |
alphabet: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', size: 20); | |
print('New ID: ${newID.id}'); | |
} |