copyWith method

GroupItemModel copyWith({
  1. ChatUIKitProfile? profile,
})

Implementation

GroupItemModel copyWith({
  ChatUIKitProfile? profile,
}) {
  return GroupItemModel(
    profile: profile ?? this.profile,
  );
}