copyWith method

ChatFolderInviteLinks copyWith({
  1. List<ChatFolderInviteLink>? inviteLinks,
  2. dynamic extra,
  3. 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,
    );