copyWith method

WorkflowTransitionProperty copyWith({
  1. String? id,
  2. String? key,
  3. String? value,
})

Implementation

WorkflowTransitionProperty copyWith(
    {String? id, String? key, String? value}) {
  return WorkflowTransitionProperty(
    id: id ?? this.id,
    key: key ?? this.key,
    value: value ?? this.value,
  );
}