copyWith method
Implementation
@override
InternalLinkTypeUnknownDeepLink copyWith({
  String? link,
  dynamic extra,
  int? clientId,
}) =>
    InternalLinkTypeUnknownDeepLink(
      link: link ?? this.link,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );