copyWith method
Implementation
@override
LoginUrlInfoOpen copyWith({
String? url,
bool? skipConfirmation,
dynamic extra,
int? clientId,
}) =>
LoginUrlInfoOpen(
url: url ?? this.url,
skipConfirmation: skipConfirmation ?? this.skipConfirmation,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);