copyWith method
Implementation
ContactItemModel copyWith({
ChatUIKitProfile? profile,
}) {
return ContactItemModel(
profile: profile ?? this.profile,
);
}
ContactItemModel copyWith({
ChatUIKitProfile? profile,
}) {
return ContactItemModel(
profile: profile ?? this.profile,
);
}