copyWith method
Input$UpdateNotificationRestrictionSettingInput
copyWith({
- String? clientMutationId()?,
- String? ownerId,
- 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);