copyWith method

ServiceManagementNavigationInfo copyWith({
  1. String? queueCategory,
  2. int? queueId,
  3. String? queueName,
})

Implementation

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