import 'package:syncrow_app/features/app_layout/model/space_model.dart'; abstract class TabBarEvent { const TabBarEvent(); } class TabChanged extends TabBarEvent { final int selectedIndex; final String roomId; final SpaceModel unit; const TabChanged( {required this.selectedIndex, required this.roomId, required this.unit}); }