copyWithWrapped method

AllowlistItem copyWithWrapped({
  1. Wrapped<String>? hostname,
})

Implementation

AllowlistItem copyWithWrapped({Wrapped<String>? hostname}) {
  return AllowlistItem(
      hostname: (hostname != null ? hostname.value : this.hostname));
}