copyWith method

BoardCreateBeanLocation copyWith({
  1. BoardCreateBeanLocationType? type,
  2. String? projectKeyOrId,
})

Implementation

BoardCreateBeanLocation copyWith(
    {BoardCreateBeanLocationType? type, String? projectKeyOrId}) {
  return BoardCreateBeanLocation(
    type: type ?? this.type,
    projectKeyOrId: projectKeyOrId ?? this.projectKeyOrId,
  );
}