MyEventRepeat_c constructor
MyEventRepeat_c({})
重复时触发
- 仅当一段时间
duration内重复通知多次达到repeatLimitNum时才会触发执行onListen
Implementation
MyEventRepeat_c({
this.repeatLimitNum = 2,
required this.duration,
required this.onListen,
});