copyWith method
Implementation
ContentRestrictionRestrictionsExpandable copyWith(
{String? user, String? group}) {
return ContentRestrictionRestrictionsExpandable(
user: user ?? this.user,
group: group ?? this.group,
);
}
ContentRestrictionRestrictionsExpandable copyWith(
{String? user, String? group}) {
return ContentRestrictionRestrictionsExpandable(
user: user ?? this.user,
group: group ?? this.group,
);
}