How to generate unique id in Dart

UniqueDartIdentityUuidUniqueidentifier

Unique Problem Overview


I write websocket chat. How to generate unique id for user?

now i use this code:

id = new DateTime.now().millisecondsSinceEpoch;

is there any more neat solution?

Unique Solutions


Solution 1 - Unique

1. There is a UUID pub package:

http://pub.dartlang.org/packages/uuid

example usage:

import 'package:uuid/uuid.dart';

// Create uuid object
var uuid = Uuid();

// Generate a v1 (time-based) id
uuid.v1(); // -> '6c84fb90-12c4-11e1-840d-7b25c5ee775a'

// Generate a v4 (random) id
uuid.v4(); // -> '110ec58a-a0f2-4ac4-8393-c866d813b8d1'

// Generate a v5 (namespace-name-sha1-based) id
uuid.v5(uuid.NAMESPACE_URL, 'www.google.com'); // -> 'c74a196f-f19d-5ea9-bffd-a2742432fc9c'

2. This src has a dart GUID generator

https://github.com/MikeMitterer/AndroidIconGenerator.DART/blob/445884924/lib/src/model/communication/GUIDGen.dart

I'll not post the function src here directly as there is no apparent licence with it, but example usage is as follows:

final String uuid = GUIDGen.generate();

Solution 2 - Unique

In year 2020 you can do UniqueKey(); which is a built in class:

https://api.flutter.dev/flutter/widgets/UniqueKey-class.html

Note

A key that is only equal to itself.

This cannot be created with a const constructor because that implies that all instantiated keys would be the same instance and therefore not be unique.

Solution 3 - Unique

Besides from uuid, you can also try this to generate small unique keys:

https://pub.dev/packages/nanoid

They even have a collision calculator:

https://zelark.github.io/nano-id-cc/

Solution 4 - Unique

If you like MongoDB style ids you could consider this small package that will help create the object id:

https://pub.dev/packages/crossplat_objectid

import 'package:bson_objectid/bson_objectid.dart';

main() {
  ObjectId id1 = new ObjectId();
  print(id1.toHexString());

  ObjectId id2 = new ObjectId.fromHexString('54495ad94c934721ede76d90');
  print(id2.timestamp);
  print(id2.machineId);
  print(id2.processId);
  print(id2.counter);
}

Solution 5 - Unique

There is also https://pub.dev/packages/xid which is lock free and has a Unicity guaranteed for 16,777,216 (24 bits) unique ids per second and per host/process

import 'package:xid/xid.dart';

void main() {
  var xid = Xid();
  print('generated id: $xid');

}

Solution 6 - Unique

I use microseconds instead of milliseconds, which is much more accurate and there is no need to add any package.

 String idGenerator() {
    final now = DateTime.now();
    return now.microsecondsSinceEpoch.toString();
  }

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSergey KarasevView Question on Stackoverflow
Solution 1 - UniqueChris BuckettView Answer on Stackoverflow
Solution 2 - UniquePascalView Answer on Stackoverflow
Solution 3 - UniquetheredforestView Answer on Stackoverflow
Solution 4 - Unique34m0View Answer on Stackoverflow
Solution 5 - UniqueBwireView Answer on Stackoverflow
Solution 6 - Uniquedev001View Answer on Stackoverflow