Last updated:
0 purchases
nanoid
nanoid #
Dart implementation of ai/nanoid
Installation #
Add nanoid as a dependency in your pubspec.yaml file
Usage #
Normal #
import 'package:nanoid/nanoid.dart';
void main() {
var id = nanoid();
var custom_length_id = nanoid(10);
// ...
}
copied to clipboard
Custom Alphabet or length #
import 'package:nanoid/nanoid.dart';
void main() {
var id = customAlphabet('1234567890abcdef', 10);
// ...
}
copied to clipboard
Async API #
import 'package:nanoid/async.dart';
void main() async {
var id = await nanoid();
var custom_length_id = await nanoid(10);
// ...
}
copied to clipboard
Non-secure API #
import 'package:nanoid/non_secure.dart';
void main() {
var non_secure_id = nanoid();
var custom_length_id = nanoid(10);
// ...
}
copied to clipboard
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.