Guid constructor

Guid(
  1. String? v
)

Constructor, expects a valid UUID and will throw an exception if the value provided is invalid.

Implementation

Guid(String? v) {
  _failIfNotValidGuid(v);
  _value = v;
}