copyWith method
Mutates the opaque result object with new flag values.
Implementation
SecurityFlagsResult copyWith({
bool? isVpnDetected,
bool? isDnsSpoofed,
bool? isProxyDetected,
}) {
this.isVpnDetected = isVpnDetected ?? this.isVpnDetected;
this.isDnsSpoofed = isDnsSpoofed ?? this.isDnsSpoofed;
this.isProxyDetected = isProxyDetected ?? this.isProxyDetected;
return this;
}