makeSelective method

KeyboardMenu<CTX> makeSelective([
  1. bool selective = true
])

Makes the keyboard selective.

Implementation

KeyboardMenu<CTX> makeSelective([bool selective = true]) {
  _selective = selective;
  return this;
}