Files
syncrow-app/lib/features/scene/bloc/tab_change/tab_change_event.dart
ashrafzarkanisala 1fe4603cbf connected all devices
2024-06-22 16:44:17 +03:00

10 lines
219 B
Dart

abstract class TabBarEvent {
const TabBarEvent();
}
class TabChanged extends TabBarEvent {
final int selectedIndex;
final String roomId;
const TabChanged({required this.selectedIndex, required this.roomId});
}