mirror of
https://github.com/Linloir/Simple-TCP-Client.git
synced 2025-12-17 00:38:11 +08:00
21 lines
456 B
Dart
21 lines
456 B
Dart
/*
|
|
* @Author : Linloir
|
|
* @Date : 2022-10-13 21:50:07
|
|
* @LastEditTime : 2022-10-20 18:02:15
|
|
* @Description :
|
|
*/
|
|
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:tcp_client/repositories/common_models/userinfo.dart';
|
|
|
|
class AvatarState extends Equatable {
|
|
const AvatarState({
|
|
required this.userInfo,
|
|
});
|
|
|
|
final UserInfo userInfo;
|
|
|
|
@override
|
|
List<Object?> get props => [userInfo.userID, userInfo.avatarEncoded];
|
|
}
|