copyWith method
Implementation
Visibility copyWith(
{String? identifier, VisibilityType? type, String? value}) {
return Visibility(
identifier: identifier ?? this.identifier,
type: type ?? this.type,
value: value ?? this.value,
);
}