admin
2022-04-21 bd6f6a75b22ecfa4b636d3f7fe3e1acaf867678e
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);
}