copyWith method

  1. @override
WorkflowActionEntity copyWith({
  1. String? appId,
  2. DisplayConditionsEntity? conditions,
  3. String? workflowId,
})
override

Implementation

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