I am using this to set the value.
$gallery = setDateFrom('2023-01-01');
But fields are coming in an array ['dateFrom', 'dateTo']
$classKey = 'set' . ucfirst($key);
$gallery->{$classKey};
I am not able to add date to this property.
I tried $classKey = 'set' . ucfirst($key) . "('$item')";
Can anybody please help?