mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 14:14:54 +00:00
10 lines
219 B
Dart
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});
|
|
}
|