uuid top-level property

String uuid

Get UUID.

A 32-byte string without hyphens is output.

Implementation

String get uuid {
  const uuid = Uuid();
  return uuid.v4().replaceAll("-", "");
}