21 lines
431 B
Dart
21 lines
431 B
Dart
import 'package:event_bus/event_bus.dart';
|
|
|
|
EventBus eventBus = EventBus();
|
|
|
|
class SCGiveRoomLuckPageDisposeEvent {}
|
|
|
|
class GiveRoomLuckWithOtherEvent {
|
|
String giftPic = "";
|
|
List<String> acceptUserIds = [];
|
|
|
|
GiveRoomLuckWithOtherEvent(this.giftPic, this.acceptUserIds);
|
|
}
|
|
|
|
class UpdateDynamicEvent {}
|
|
|
|
class RegisterRewardGrantedEvent {
|
|
final Object? data;
|
|
|
|
RegisterRewardGrantedEvent({this.data});
|
|
}
|