copyWith method
LookAndFeelSelection
copyWith({
- String? spaceKey,
- LookAndFeelSelectionLookAndFeelType? lookAndFeelType,
Implementation
LookAndFeelSelection copyWith(
{String? spaceKey,
LookAndFeelSelectionLookAndFeelType? lookAndFeelType}) {
return LookAndFeelSelection(
spaceKey: spaceKey ?? this.spaceKey,
lookAndFeelType: lookAndFeelType ?? this.lookAndFeelType,
);
}