copyWith method

AllowlistItem copyWith({
  1. String? hostname,
})

Implementation

AllowlistItem copyWith({String? hostname}) {
  return AllowlistItem(hostname: hostname ?? this.hostname);
}