copyWith method
Returns a manager with updated focus.
Implementation
TilingPaneManager copyWith({String? focusedPaneId}) {
return TilingPaneManager._(
root: root,
focusedPaneId: focusedPaneId ?? this.focusedPaneId,
paneMinWidth: paneMinWidth,
paneMinHeight: paneMinHeight,
snapThreshold: snapThreshold,
);
}