copyWith method
Implementation
ContentRestrictionsExpandable copyWith({String? read, String? update}) {
return ContentRestrictionsExpandable(
read: read ?? this.read,
update: update ?? this.update,
);
}
ContentRestrictionsExpandable copyWith({String? read, String? update}) {
return ContentRestrictionsExpandable(
read: read ?? this.read,
update: update ?? this.update,
);
}