copyWith method

AvailableWorkflowTriggerTypes copyWith({
  1. String? description,
  2. String? name,
  3. String? type,
})

Implementation

AvailableWorkflowTriggerTypes copyWith(
    {String? description, String? name, String? type}) {
  return AvailableWorkflowTriggerTypes(
    description: description ?? this.description,
    name: name ?? this.name,
    type: type ?? this.type,
  );
}