copyWith method

WorkflowStatusAndPort copyWith({
  1. int? port,
  2. String? statusReference,
})

Implementation

WorkflowStatusAndPort copyWith({int? port, String? statusReference}) {
  return WorkflowStatusAndPort(
    port: port ?? this.port,
    statusReference: statusReference ?? this.statusReference,
  );
}