uuidv4 function
Implementation
String uuidv4() {
final bytes = List<int>.generate(16, (_) => Random.secure().nextInt(255));
// Set the version (4) and variant (8, 9, A, or B) bits
bytes[6] = (bytes[6] & 0x0f) | 0x40; // Version 4
bytes[8] = (bytes[8] & 0x3f) | 0x80; // Variant (8, 9, A, or B)
// Convert bytes to hexadecimal and format the UUID
final uuid = base64UrlEncode(bytes);
return '${uuid.substring(0, 8)}-${uuid.substring(8, 12)}-${uuid.substring(12, 16)}-${uuid.substring(16, 20)}-${uuid.substring(20)}';
}