You are given a list of integers representing the level order traversal of a binary tree. Write a function to return the root node of the binary tree constructed from the list.
[3, 9, 20, null, null, 15, 7]
Node object representing the root of the binary tree