GUIDFromString function

Pointer<GUID> GUIDFromString(
  1. String guid,
  2. {Allocator allocator = calloc}
)

Implementation

Pointer<GUID> GUIDFromString(String guid, {Allocator allocator = calloc}) =>
    Guid.parse(guid).toNativeGUID(allocator: allocator);