//
import 'dart:async';

class ReloadEvent {
  static int com = 0;
  final String id;

  ReloadEvent({this.id}) {
    com++;
  }

}