Files
TravelMate/lib/blocs/group/group_state.dart

45 lines
858 B
Dart

import 'package:equatable/equatable.dart';
import '../../data/models/group.dart';
abstract class GroupState extends Equatable {
const GroupState();
@override
List<Object?> get props => [];
}
// État initial
class GroupInitial extends GroupState {}
// Chargement
class GroupLoading extends GroupState {}
// Groupes chargés
class GroupsLoaded extends GroupState {
final List<Group> groups;
const GroupsLoaded(this.groups);
@override
List<Object?> get props => [groups];
}
// Succès d'une opération
class GroupOperationSuccess extends GroupState {
final String message;
const GroupOperationSuccess(this.message);
@override
List<Object?> get props => [message];
}
// Erreur
class GroupError extends GroupState {
final String message;
const GroupError(this.message);
@override
List<Object?> get props => [message];
}