Guid constructor

Guid({
  1. String? value,
})

Constructor for creating a Guid object.

The constructor initializes a Guid object with an optional named parameter:

  • value: The value of the GUID.

Implementation

Guid({
  this.value,
});