squuid method

Future<String> squuid({
  1. int? msec,
})

Generates a UUID that grow with time. Such UUIDs will always go to the end of the index and that will minimize insertions in the middle.

@TODO: implemented by n Dart.

Implementation

Future<String> squuid({int? msec}) {
  throw UnimplementedError();
}