copyWith method
Implementation
PageBlockListItem copyWith({
String? label,
List<PageBlock>? blocks,
bool? hasCheckbox,
bool? isChecked,
int? value,
String? type,
}) => PageBlockListItem(
label: label ?? this.label,
blocks: blocks ?? this.blocks,
hasCheckbox: hasCheckbox ?? this.hasCheckbox,
isChecked: isChecked ?? this.isChecked,
value: value ?? this.value,
type: type ?? this.type,
);