uuid property

Uuid uuid

Returns a Uuid instance that uses Randombytes as random generator to generate random UUIDs.

Implementation

Uuid get uuid => _uuids[this] ??= Uuid(
      options: <String, dynamic>{
        'grng': grng(randombytes),
      },
    );