copyWith method

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

Implementation

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