final ValueSetter<int> setVal;
can be assigned a function callback that accepts one parameter like
setVal=(i){
//assign i to some variable
}
What if I wanted the callback to accept 2 parameters like
setVal=(i,j){
//assign i and j to some variable
}
?