copyWith method
Implementation
MessageLink copyWith({
String? link,
bool? isPublic,
dynamic extra,
int? clientId,
}) => MessageLink(
link: link ?? this.link,
isPublic: isPublic ?? this.isPublic,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);