Pagination default value on tables

I've got my default value added to the pagination dropdown count:
protected function getTableRecordsPerPageSelectOptions(): array 
{
    return [5, 10, 25, 50, 100];
}

But I can't find a way to set the default pagination count to '5'. Does anyone know how to override the default/inital pagination value for a custom table?
Was this page helpful?