copyWith method
ContentRestrictionArray
copyWith({
- List<
ContentRestriction> ? results, - int? start,
- int? limit,
- int? size,
- String? restrictionsHash,
- GenericLinks? links,
Implementation
ContentRestrictionArray copyWith(
{List<ContentRestriction>? results,
int? start,
int? limit,
int? size,
String? restrictionsHash,
GenericLinks? links}) {
return ContentRestrictionArray(
results: results ?? this.results,
start: start ?? this.start,
limit: limit ?? this.limit,
size: size ?? this.size,
restrictionsHash: restrictionsHash ?? this.restrictionsHash,
links: links ?? this.links,
);
}