mirror of
https://github.com/Linloir/Simple-TCP-Client.git
synced 2025-12-18 17:28:11 +08:00
- User Profile page available - Search user avavilable - Tested Message page - Tested Contact page
20 lines
432 B
Dart
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];
|
|
}
|