admin
2022-02-09 96c17fc30ff517de77f0b3b12a6016f3276a7472
1
2
3
4
5
6
7
8
9
import 'package:event_bus/event_bus.dart';
EventBus eventBus = EventBus();
 
 
 
class LoginEventBus {
  final bool isLogin;
  LoginEventBus(this.isLogin);
}