import 'package:locations/model/map/location_model.dart';
|
import 'package:locations/model/user/user_info.dart';
|
import 'package:event_bus/event_bus.dart';
|
|
EventBus eventBus = EventBus();
|
|
class UserLocationInfoEventBus {
|
SimpleLocation? location;
|
UserInfo? user;
|
UserLocationInfoEventBus(this.location, this.user);
|
}
|
|
class LoginEventBus {
|
final bool isLogin;
|
LoginEventBus(this.isLogin);
|
}
|