Just add a step h widget and set the minimum value to -1 and the maximum value to 1 so you will have 3 values (-1 , 0 , 1) then attach it to a virtual pin for example v1 then use this :
BLYNK_WRITE(V1) {
switch (param.asInt())
{
case -1:
// Motor left code ;
break;
case 0:
// Motor Stop code ;
break;
case 1:
// Motor right code ;
break;
default:
Serial.println("select direction");
}
}