copyWith method

PermissionsAll copyWith({
  1. Career? career,
  2. ProjectInquiry? projectInquiry,
  3. Vendor? vendor,
  4. Redevelopment? redevelopment,
  5. Contact? contact,
})

Implementation

PermissionsAll copyWith({  Career? career,
  ProjectInquiry? projectInquiry,
  Vendor? vendor,
  Redevelopment? redevelopment,
  Contact? contact,
}) => PermissionsAll(  career: career ?? _career,
  projectInquiry: projectInquiry ?? _projectInquiry,
  vendor: vendor ?? _vendor,
  redevelopment: redevelopment ?? _redevelopment,
  contact: contact ?? _contact,
);