flutter_smartconfig/android/src/main/java/com/espressif/iot/esptouch/IEsptouchListener.java

12 lines
299 B
Java

package com.espressif.iot.esptouch;
public interface IEsptouchListener {
/**
* when new esptouch result is added, the listener will call
* onEsptouchResultAdded callback
*
* @param result the Esptouch result
*/
void onEsptouchResultAdded(IEsptouchResult result);
}