copyWith method
Implementation
InputPageBlockDetails copyWith({
RichText? header,
List<InputPageBlock>? blocks,
bool? isOpen,
}) => InputPageBlockDetails(
header: header ?? this.header,
blocks: blocks ?? this.blocks,
isOpen: isOpen ?? this.isOpen,
);