apply method
Called before relayout to restore the saved state and restart the layout in the same conditions
Implementation
@override
void apply(PartitionsContext other) {
for (var index = 0; index < partitionContext.length; index++) {
partitionContext[index]?.apply(other.partitionContext[index]!);
}
}