+
+

UuidValue.fromString constructor +

+ +
+ + UuidValue.fromString(
  1. String uuid
  2. +
) +
+ + +
+

fromString() creates a UuidValue from a String with no validation.

+
+ + + +
+

Implementation

+
factory UuidValue.fromString(String uuid) {
+  return UuidValue(uuid.toLowerCase());
+}
+
+ + +