基础组件库
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
132 B

  1. //
  2. import 'dart:async';
  3. class ReloadEvent {
  4. static int com = 0;
  5. final String id;
  6. ReloadEvent({this.id}) {
  7. com++;
  8. }
  9. }