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