copyWith method
Implementation
@override
ActionEntity copyWith(
    {String? appId, DisplayConditionsEntity? conditions, String? toAppID}) {
  return SwitchAppEntity(appId ?? appID,
      conditions: conditions ?? this.conditions,
      toAppID: toAppID ?? this.toAppID);
}