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