mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-26 08:59:40 +00:00
18 lines
378 B
Dart
18 lines
378 B
Dart
import 'package:syncrow_app/features/app_layout/model/space_model.dart';
|
|
|
|
abstract class TabBarEvent {
|
|
const TabBarEvent();
|
|
}
|
|
|
|
class TabBarTabChangedEvent extends TabBarEvent {
|
|
const TabBarTabChangedEvent({
|
|
required this.selectedIndex,
|
|
required this.roomId,
|
|
required this.unit,
|
|
});
|
|
|
|
final int selectedIndex;
|
|
final String roomId;
|
|
final SpaceModel unit;
|
|
}
|