copyWith method

OtherProjects copyWith({
  1. String? projectId,
  2. String? projectTitle,
})

Implementation

OtherProjects copyWith({  String? projectId,
  String? projectTitle,
}) => OtherProjects(  projectId: projectId ?? _projectId,
  projectTitle: projectTitle ?? _projectTitle,
);