ChatMemberProfile constructor
ChatMemberProfile({})
Implementation
ChatMemberProfile({
required this.address,
required this.intent,
required this.role,
required this.userInfo,
}) {
if (!GroupMemberRole.isValidRole(role)) {
throw Exception('Invalid role');
}
}