copyWith method

ChapterContentBlockResponseModel copyWith({
  1. String? blockId,
  2. List<Object>? nodes,
})

Implementation

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