toUUID method

UUID toUUID()

Implementation

UUID toUUID() => RegExp(r'\w\w')
    .allMatches(this)
    .map((match) => int.parse(match[0]!, radix: 16))
    .toUUID();