copyWith method
Implementation
ChapterContentBlockResponseModel copyWith(
{String? blockId, List<Object>? nodes}) {
return ChapterContentBlockResponseModel(
blockId: blockId ?? this.blockId, nodes: nodes ?? this.nodes);
}
ChapterContentBlockResponseModel copyWith(
{String? blockId, List<Object>? nodes}) {
return ChapterContentBlockResponseModel(
blockId: blockId ?? this.blockId, nodes: nodes ?? this.nodes);
}