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