copyWith method

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

Implementation

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