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