copyWith method

BoardConfigBeanLocation copyWith({
  1. BoardConfigBeanLocationType? type,
  2. String? projectKeyOrId,
})

Implementation

BoardConfigBeanLocation copyWith(
    {BoardConfigBeanLocationType? type, String? projectKeyOrId}) {
  return BoardConfigBeanLocation(
    type: type ?? this.type,
    projectKeyOrId: projectKeyOrId ?? this.projectKeyOrId,
  );
}