How can I programmatically trigger IonRefresher when I click the button?
<IonContent ref={ionContentRef} slot="fixed">
<IonRefresher
slot="fixed"
onIonRefresh={(e) => {
doRefresh();
}}
ref={ionRefresherRef}>
<IonRefresherContent
pullingIcon={null}
refreshingSpinner="bubbles"
></IonRefresherContent>
</IonRefresher>
...
...
<IonButton onClick={refreshByClickButton}></IonButton>
</IonContent>