copyWith method
Implementation
Members copyWith({
String? contactId,
String? agentId,
String? fullName,
String? avatar,
String? gender,
String? status,
String? sipUser,
}) =>
Members(
contactId: contactId ?? this.contactId,
agentId: agentId ?? this.agentId,
fullName: fullName ?? this.fullName,
avatar: avatar ?? this.avatar,
gender: gender ?? this.gender,
status: status ?? this.status,
sipUser: sipUser ?? this.sipUser,
);