copyWith method

Input$UpdateIpAllowListEntryInput copyWith({
  1. String? allowListValue,
  2. String? clientMutationId()?,
  3. String? ipAllowListEntryId,
  4. bool? isActive,
  5. String? name()?,
})

Implementation

Input$UpdateIpAllowListEntryInput copyWith(
        {String? allowListValue,
        String? Function()? clientMutationId,
        String? ipAllowListEntryId,
        bool? isActive,
        String? Function()? name}) =>
    Input$UpdateIpAllowListEntryInput(
        allowListValue:
            allowListValue == null ? this.allowListValue : allowListValue,
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        ipAllowListEntryId: ipAllowListEntryId == null
            ? this.ipAllowListEntryId
            : ipAllowListEntryId,
        isActive: isActive == null ? this.isActive : isActive,
        name: name == null ? this.name : name());