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

outdated

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);

}
8
likes
30
pub points
40%
popularity

Publisher

unverified uploader

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)
View/report issues

License

unknown (LICENSE)

Dependencies

uuid

More

Packages that depend on shortuuid