copyWith method
PageBulk
copyWith(
{ - dynamic id,
- String? status,
- String? title,
- dynamic spaceId,
- dynamic parentId,
- String? parentType,
- int? position,
- String? authorId,
- DateTime? createdAt,
- Version? version,
- BodyBulk? body,
- AbstractPageLinks? links,
})
Implementation
PageBulk copyWith(
{dynamic id,
String? status,
String? title,
dynamic spaceId,
dynamic parentId,
String? parentType,
int? position,
String? authorId,
DateTime? createdAt,
Version? version,
BodyBulk? body,
AbstractPageLinks? links}) {
return PageBulk(
id: id ?? this.id,
status: status ?? this.status,
title: title ?? this.title,
spaceId: spaceId ?? this.spaceId,
parentId: parentId ?? this.parentId,
parentType: parentType ?? this.parentType,
position: position ?? this.position,
authorId: authorId ?? this.authorId,
createdAt: createdAt ?? this.createdAt,
version: version ?? this.version,
body: body ?? this.body,
links: links ?? this.links,
);
}