copyWith method

  1. @override
LoginUrlInfoOpen copyWith({
  1. String? url,
  2. bool? skipConfirmation,
  3. dynamic extra,
  4. int? clientId,
})
override

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,
    );