copyWith method
Implementation
NotificationScheme copyWith(
{String? description,
String? expand,
int? id,
String? name,
List<NotificationSchemeEvent>? notificationSchemeEvents,
List<int>? projects,
Scope? scope,
String? self}) {
return NotificationScheme(
description: description ?? this.description,
expand: expand ?? this.expand,
id: id ?? this.id,
name: name ?? this.name,
notificationSchemeEvents:
notificationSchemeEvents ?? this.notificationSchemeEvents,
projects: projects ?? this.projects,
scope: scope ?? this.scope,
self: self ?? this.self,
);
}