fromUserId static method
Implementation
static NewRequestItemModel fromUserId(String userId, [String? reason]) {
ChatUIKitProfile profile = ChatUIKitProvider.instance.getProfile(
ChatUIKitProfile.contact(id: userId),
);
return NewRequestItemModel(profile: profile, reason: reason);
}