copyWith method
Implementation
Screen copyWith({String? description, int? id, String? name, Scope? scope}) {
return Screen(
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
scope: scope ?? this.scope,
);
}