simple-chat-client/lib/profile/cubit/user_profile_state.dart
Linloir 0bb71791da
More Functions
- User Profile page available
- Search user avavilable
- Tested Message page
- Tested Contact page
2022-10-14 12:32:19 +08:00

20 lines
432 B
Dart

/*
* @Author : Linloir
* @Date : 2022-10-14 08:54:25
* @LastEditTime : 2022-10-14 09:11:04
* @Description :
*/
import 'package:equatable/equatable.dart';
enum ContactStatus { isContact, pendingReply, notContact, consulting, none }
class UserProfileState extends Equatable {
final ContactStatus status;
const UserProfileState({required this.status});
@override
List<Object> get props => [status];
}