copyWith method
Implementation
SelectionState<T> copyWith({
Set<T>? selected,
Set<T>? staging,
}) =>
SelectionState(
selected: selected ?? this.selected,
staging: staging ?? this.staging,
);
SelectionState<T> copyWith({
Set<T>? selected,
Set<T>? staging,
}) =>
SelectionState(
selected: selected ?? this.selected,
staging: staging ?? this.staging,
);