shortuuid 2.1.1 copy "shortuuid: ^2.1.1" to clipboard
shortuuid: ^2.1.1 copied to clipboard

Generate short uuid (shorter version of 32 bit Guid). It will be useful if you need unque id that is in shorter format.

example/shortuuid_example.dart

import 'package:shortuuid/shortuuid.dart';

void main() {

  //create shorter version of uuid:
  var shortUuid = ShortUuid.shortv4();
  print(shortUuid);

  //related full uuid v4
  var fullUuid = ShortUuid.toUuidv4(shortUuid);
  print(fullUuid);

}
7
likes
25
points
47
downloads

Publisher

unverified uploader

Weekly Downloads

Generate short uuid (shorter version of 32 bit Guid). It will be useful if you need unque id that is in shorter format.

Repository (GitHub)

License

unknown (license)

Dependencies

uuid

More

Packages that depend on shortuuid