copyWith method
Returns a modified status of the captive portal probe.
Implementation
CaptivePortalStatus copyWith({
bool? isCaptivePortal,
String? redirectUrl,
}) {
return CaptivePortalStatus(
isCaptivePortal: isCaptivePortal ?? this.isCaptivePortal,
redirectUrl: redirectUrl ?? this.redirectUrl,
);
}