scrollResponderFlashScrollIndicators: function()

in deprecated-react-native-listview/ScrollResponder.js [592:603]


  scrollResponderFlashScrollIndicators: function() {
    const that: React.ElementRef<ScrollView> = (this: any);
    invariant(
      that.getNativeScrollRef != null,
      'Expected flashScrollIndicators to be called on a scrollViewRef. If this exception occurs it is likely a bug in React Native',
    );
    const nativeScrollRef = that.getNativeScrollRef();
    if (nativeScrollRef == null) {
      return;
    }
    Commands.flashScrollIndicators(nativeScrollRef);
  },