copyWith method

LookAndFeelSelection copyWith({
  1. String? spaceKey,
  2. LookAndFeelSelectionLookAndFeelType? lookAndFeelType,
})

Implementation

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