copyWithWrapped method
ChapterContentBlockInputModel
copyWithWrapped({
- Wrapped? subType,
- Wrapped? blockId,
- Wrapped<
List< ? nodes,ChapterContentParagraphTtsNodeInputModel> >
Implementation
ChapterContentBlockInputModel copyWithWrapped(
{Wrapped<dynamic>? subType,
Wrapped<dynamic>? blockId,
Wrapped<List<ChapterContentParagraphTtsNodeInputModel>>? nodes}) {
return ChapterContentBlockInputModel(
subType: (subType != null ? subType.value : this.subType),
blockId: (blockId != null ? blockId.value : this.blockId),
nodes: (nodes != null ? nodes.value : this.nodes));
}