Creates a new UUID from 16 bytes.
UUID(Iterable<int> value) : value = value.toList() { if (value.length != 16) { throw const FormatException('Invalid length UUID'); } }