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