LegacyUuid.fromHexString constructor

LegacyUuid.fromHexString(
  1. String hexString
)

The hex String Expected is in the desired legacy format to store it can contain hyphens ('-').

Implementation

factory LegacyUuid.fromHexString(String hexString) =>
    LegacyUuid(_toByteList(hexString));