copyWith method

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

Implementation

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