notifyOnIndexChanged method

void notifyOnIndexChanged(
  1. int index
)

Implementation

void notifyOnIndexChanged(int index){
  for(SafeXPayObserver observer in observerList){
    observer.onIndexChanged(index);
  }
}