admin
2022-03-31 02f1c9fd2c594323f772f8e8f0f2187a285c1749
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);
}