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