copyWith method
Implementation
PermissionHolder copyWith(
{String? expand, String? parameter, String? type, String? value}) {
return PermissionHolder(
expand: expand ?? this.expand,
parameter: parameter ?? this.parameter,
type: type ?? this.type,
value: value ?? this.value,
);
}