copyWith method
Implementation
UserLink copyWith({
String? url,
int? expiresIn,
dynamic extra,
int? clientId,
}) =>
UserLink(
url: url ?? this.url,
expiresIn: expiresIn ?? this.expiresIn,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);