copyWith method
StackItemSets
copyWith({
- List<
(BigInt, List< ? insertions,StartLength> )> - List<
(BigInt, List< ? deletions,StartLength> )>
Returns a new instance by overriding the values passed as arguments
Implementation
StackItemSets copyWith({
List<(BigInt /*U64*/, List<StartLength>)>? insertions,
List<(BigInt /*U64*/, List<StartLength>)>? deletions,
}) => StackItemSets(
insertions: insertions ?? this.insertions,
deletions: deletions ?? this.deletions,
);