focusPageSingleRL method

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

Implementation

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