copyWith method
Implementation
PageBlockListItem copyWith({
String? label,
List<PageBlock>? pageBlocks,
}) =>
PageBlockListItem(
label: label ?? this.label,
pageBlocks: pageBlocks ?? this.pageBlocks,
);
PageBlockListItem copyWith({
String? label,
List<PageBlock>? pageBlocks,
}) =>
PageBlockListItem(
label: label ?? this.label,
pageBlocks: pageBlocks ?? this.pageBlocks,
);