copyWithWrapped method

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));
}