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