Files
syncrow-app/lib/features/scene/bloc/tab_change/tab_change_event.dart
2024-10-30 19:16:10 +04:00

14 lines
345 B
Dart

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});
}