copyWith method

NotificationSchemeAndProjectMappingJsonBean copyWith({
  1. String? notificationSchemeId,
  2. String? projectId,
})

Implementation

NotificationSchemeAndProjectMappingJsonBean copyWith(
    {String? notificationSchemeId, String? projectId}) {
  return NotificationSchemeAndProjectMappingJsonBean(
    notificationSchemeId: notificationSchemeId ?? this.notificationSchemeId,
    projectId: projectId ?? this.projectId,
  );
}