copyWith method

Input$UpdateNotificationRestrictionSettingInput copyWith({
  1. String? clientMutationId()?,
  2. String? ownerId,
  3. Enum$NotificationRestrictionSettingValue? settingValue,
})

Implementation

Input$UpdateNotificationRestrictionSettingInput copyWith(
        {String? Function()? clientMutationId,
        String? ownerId,
        Enum$NotificationRestrictionSettingValue? settingValue}) =>
    Input$UpdateNotificationRestrictionSettingInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        ownerId: ownerId == null ? this.ownerId : ownerId,
        settingValue:
            settingValue == null ? this.settingValue : settingValue);