pocketmine\nbt\tag\ListTag::__construct PHP Method

__construct() public method

public __construct ( $name = "", $value = [] )
    public function __construct($name = "", $value = [])
    {
        $this->__name = $name;
        foreach ($value as $k => $v) {
            $this->{$k} = $v;
        }
    }