copyWith method
ChatFolderInviteLinks
copyWith({
- List<
ChatFolderInviteLink> ? inviteLinks, - dynamic extra,
- int? clientId,
Implementation
ChatFolderInviteLinks copyWith({
List<ChatFolderInviteLink>? inviteLinks,
dynamic extra,
int? clientId,
}) =>
ChatFolderInviteLinks(
inviteLinks: inviteLinks ?? this.inviteLinks,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);