copyWith method
Implementation
ServiceManagementNavigationInfo copyWith(
{String? queueCategory, int? queueId, String? queueName}) {
return ServiceManagementNavigationInfo(
queueCategory: queueCategory ?? this.queueCategory,
queueId: queueId ?? this.queueId,
queueName: queueName ?? this.queueName,
);
}