generateUUID static method
Implementation
static String generateUUID() {
var uuid = Uuid().v4();
// .toLowerCase() here flattens concatenated strings to save heap memory space.
return uuid.toLowerCase();
}
static String generateUUID() {
var uuid = Uuid().v4();
// .toLowerCase() here flattens concatenated strings to save heap memory space.
return uuid.toLowerCase();
}