autoFilter(string $range): self
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$filePath = $excel->fileName("tutorial.xlsx")
->header(['name', 'age'])
->data([
['one', 10],
['two', 20],
['three', 30],
])
->autoFilter("A1:B3") // Add Filter/Filter
->output();