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