copyWith method
ChapterContentBlockInputModel
copyWith({
- dynamic subType,
- dynamic blockId,
- List<
ChapterContentParagraphTtsNodeInputModel> ? nodes,
Implementation
ChapterContentBlockInputModel copyWith(
{dynamic subType,
dynamic blockId,
List<ChapterContentParagraphTtsNodeInputModel>? nodes}) {
return ChapterContentBlockInputModel(
subType: subType ?? this.subType,
blockId: blockId ?? this.blockId,
nodes: nodes ?? this.nodes);
}