part of 'users_cubit.dart'; class UsersState extends Equatable { const UsersState(this.users); final List users; @override List get props => users; }