copyWith method
Implementation
WebApiModulesAdministratorUserCreateUserSalesRepresentativeContactResponse
copyWith({String? contactId, int? status, bool? success, String? msg}) {
return WebApiModulesAdministratorUserCreateUserSalesRepresentativeContactResponse(
contactId: contactId ?? this.contactId,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}