基础组件库
You can not select more than 25 topics 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. }