focusPageSingleLR method

String focusPageSingleLR([
  1. int? index
])
inherited

Implementation

String focusPageSingleLR([int? index]){
  focusPageMode = FocusPageMode.singleLR;
  final tempIndex = index ?? _currentFocusIndex;
  _currentFocusIndex = tempIndex >= 0 && tempIndex <= singles.length - 1 ? tempIndex : 0;
  // gKeyMappedValues.clear();
  return focusPageCurrentPT!;
}