copyWith method
Implementation
GroupContactsModel copyWith({
AtContact? contact,
AtGroup? group,
ContactsType? contactType,
}) {
return GroupContactsModel(
contact: contact ?? this.contact,
group: group ?? this.group,
contactType: contactType ?? this.contactType,
);
}